Examples of splitCol()


Examples of com.extentech.ExtenXLS.WorkSheetHandle.splitCol()

   *
   */
  protected void tesSplitCols() {
    try {
      WorkSheetHandle sheet= workbook.getWorkSheet(0);
      sheet.splitCol(5, 5000); // split at col 5 (F), set divider at 1000 col units
    } catch (Exception e) {
      System.out.println("Error setting Split panes: " + e.getMessage());
    }
    writeFile(workbook, "testSplitPanesCol.xls")
  }
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.