Examples of ETextTable


Examples of ag.ion.bion.officelayer.internal.text.table.extended.ETextTable

      officeApplication.setConfiguration(localOfficeApplicationConfiguration);
      officeApplication.activate();
      docu = (ITextDocument)officeApplication.getDocumentService().loadDocument("file:///d:/java/eclipse/workspace/officeapi/test/testETables.sxw");
     
      ITextTable table = docu.getTextTableService().getTextTables()[0];
      ETextTable textTable = new ETextTable(docu,table);
     
      textTable.addRows(200); //o.k.
     
      textTable.getCell(10,1).setCellFormula("<A100>+<B3>");
      textTable.getCell(10,2).setCellFormula("<A100:A200>+<B3:B7>");
//      textTable.addRows(1,10);  // o.k.
//      textTable.addRows(100,10); //o.k.
////      textTable.addRows(1,82); // o.k.
////      textTable.addRows(1,83); // o.k.
////       
View Full Code Here

Examples of ag.ion.bion.officelayer.internal.text.table.extended.ETextTable

          .getDocumentService()
          .loadDocument(
              "file:///d:/java/eclipse/workspace/officeapi/test/testETables.sxw");

      ITextTable table = docu.getTextTableService().getTextTables()[0];
      ETextTable textTable = new ETextTable(docu, table);

      textTable.addRows(200); // o.k.

      textTable.getCell(10, 1).setCellFormula("<A100>+<B3>");
      textTable.getCell(10, 2).setCellFormula("<A100:A200>+<B3:B7>");
      // textTable.addRows(1,10); // o.k.
      // textTable.addRows(100,10); //o.k.
      // // textTable.addRows(1,82); // o.k.
      // // textTable.addRows(1,83); // o.k.
      // //
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.