package com.aspose.cells.examples.featurescomparison.cellsrowscolumns.freezepanes; import com.aspose.cells.Workbook; import com.aspose.cells.Worksheet; import com.aspose.cells.WorksheetCollection; import com.aspose.cells.examples.Utils; public class AsposeFreezePanes { public static void main(String[] args) throws Exception { // The path to the documents directory. String dataDir = Utils.getDataDir(AsposeFreezePanes.class); //Instantiating a Excel object by excel file path Workbook workbook = new Workbook(); //Accessing the first worksheet in the Excel file WorksheetCollection worksheets = workbook.getWorksheets(); Worksheet worksheet1 = worksheets.get(0); Worksheet worksheet2 = worksheets.add("Sheet2"); //Applying freeze panes settings worksheet1.freezePanes(0,2,0,2); // Freezing Columns worksheet2.freezePanes(2,0,2,0); // Freezing Rows //Saving the modified Excel file in default format workbook.save(dataDir + "AsposeFreezePanes_Out.xls"); //Print Message System.out.println("Panes freeze successfull."); } }