Package org.apache.poi.hslf.model

Examples of org.apache.poi.hslf.model.Table.moveTo()


    table.setColumnWidth(0, 300);
    // set width of the 2nd column
    table.setColumnWidth(1, 150);
   
    slide.addShape(table);
    table.moveTo(100, 100);
   
    FileOutputStream out = new FileOutputStream("data/Table_Apache.ppt");
    ppt.write(out);
    out.close();
  }
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.