Examples of freezeCol()


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

    String fileName = "testFreezePanes.xls";
    try {
      WorkSheetHandle sheet= workbook.getWorkSheet(0);
      // try freezing
      sheet.freezeRow(9);
      sheet.freezeCol(17);
    } catch (Exception e) {
      System.out.println("Error setting Freeze panes: " + e.getMessage());
    }
    writeFile(workbook, fileName);   
  }
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.