Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To Split Panes using Aspose.Cells Java for PHP, simply invoke SplitPanes module.
PHP Code
$saveFormat = new SaveFormat();
//Instantiate a new workbook
//Open a template file
$book = new Workbook($dataDir . "book.xls");
//Set the active cell
$book->getWorksheets()->get(0)->setActiveCell("A20");
//Split the worksheet window
$book->getWorksheets()->get(0)->split();
//Save the excel file
$book->save($dataDir . "book.out.xls", $saveFormat->EXCEL_97_TO_2003);
Download Split 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.