2017-04-11 22:15:36 +00:00
|
|
|
### Workbook-Level Attributes
|
|
|
|
|
2017-06-01 21:22:11 +00:00
|
|
|
`wb.Workbook` stores workbook-level attributes.
|
2017-04-11 22:15:36 +00:00
|
|
|
|
|
|
|
#### Defined Names
|
|
|
|
|
|
|
|
`wb.Workbook.Names` is an array of defined name objects which have the keys:
|
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
<details>
|
|
|
|
<summary><b>Defined Name Properties</b> (click to show)</summary>
|
|
|
|
|
2017-04-11 22:15:36 +00:00
|
|
|
| Key | Description |
|
|
|
|
|:----------|:-----------------------------------------------------------------|
|
|
|
|
| `Sheet` | Name scope. Sheet Index (0 = first sheet) or `null` (Workbook) |
|
|
|
|
| `Name` | Case-sensitive name. Standard rules apply ** |
|
|
|
|
| `Ref` | A1-style Reference (e.g. `"Sheet1!$A$1:$D$20"`) |
|
|
|
|
| `Comment` | Comment (only applicable for XLS/XLSX/XLSB) |
|
2017-06-01 21:22:11 +00:00
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
2017-04-11 22:15:36 +00:00
|
|
|
|
|
|
|
Excel allows two sheet-scoped defined names to share the same name. However, a
|
|
|
|
sheet-scoped name cannot collide with a workbook-scope name. Workbook writers
|
|
|
|
may not enforce this constraint.
|
|
|
|
|
2017-06-01 21:22:11 +00:00
|
|
|
#### Miscellaneous Workbook Properties
|
|
|
|
|
|
|
|
`wb.Workbook.WBProps` holds other workbook properties:
|
|
|
|
|
|
|
|
| Key | Description |
|
|
|
|
|:-----------|:----------------------------------------------------|
|
|
|
|
| `date1904` | epoch: 0/false for 1900 system, 1/true for 1904 |
|
|
|
|
|