Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To Freeze Panes in the Spreadsheet Document using Aspose.Cells Java for PHP, simply invoke FreezePanes module.
PHP Code
//Instantiating a Excel object by excel file path
$workbook = new Workbook($dataDir . "book.xls");
//Accessing the first worksheet in the Excel file
$worksheets = $workbook->getWorksheets();
$worksheet = $worksheets->get(0);
//Applying freeze panes settings
$worksheet->freezePanes(3,2,3,2);
//Saving the modified Excel file in default format
$workbook->save($dataDir . "book.out.xls");
Download Freeze Panes (Aspose.Cells) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.