setWorkbookSettings
setWorkbookSettings

Sets workbook settings.
Description
public setWorkbookSettings($options = array())
This method sets workbook settings.
Parameters
options
Key | Type | Description |
---|---|---|
activeSheetAsActiveTab | bool | Active sheet number as the active tab. Default as false. |
activeTab | int | Active tab number. The first tab is 0. |
forceFullCalc | bool | Enable Force Full Calculation. |
fullCalcOnLoad | bool | Enable Full Calculation On Load. |
readOnly | bool | Set as read only. Default as false. |
Code samples
x
1
require_once 'classes/CreateXlsx.php';
2
3
$xlsx = new CreateXlsx();
4
5
// add new sheets
6
$xlsx->addSheet(array('name'=> 'My 1'));
7
$xlsx->addSheet(array('name'=> 'Other', 'removeSelected' => true, 'selected' => true, 'active' => true));
8
9
// change sheet settings
10
$xlsx->setSheetSettings(array('tabSelected' => false));
11
12
$xlsx->setActiveSheet(array('position' => 1));
13
$xlsx->setSheetSettings(array('tabSelected' => true));
14
15
// set the second sheet as the active tab in the workbook
16
$xlsx->setWorkbookSettings(array('activeTab' => 1));
17
18
$xlsx->saveXlsx('output');
19
Release notes
- phpxlsx 2.5:
- readOnly, fullCalcOnLoad and forceFullCalc options.
- phpxlsx 1.0:
- new method.