Examples of CTRow


Examples of org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRow

    }
   
   
    public void testCreateRow(){
  CTTbl table = CTTbl.Factory.newInstance();
  CTRow r1=table.addNewTr();
  r1.addNewTc().addNewP();
  r1.addNewTc().addNewP();
  CTRow r2=table.addNewTr();
  r2.addNewTc().addNewP();
  r2.addNewTc().addNewP();
  CTRow r3=table.addNewTr();
  r3.addNewTc().addNewP();
  r3.addNewTc().addNewP();
 
  XWPFTable xtab=new XWPFTable(null, table);
      assertEquals(3,xtab.getNumberOfRows());
      assertNotNull(xtab.getRow(2));
     
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.