sheetjs/docbits/57_wbbook.md
SheetJS aff7b95272 Date/Time Minutiae
- TZ consistency for DBF and others (closes #663 h/t @peeyushsrivastava)
- Date1904 XLSX/XLSB/XLS/XLML consistency (fixes #175 h/t @SheetJSDev)
- dateNF corrects for plaintext date parsing (fixes #658 h/t @mmancosu)
- new travis tests override local time zones
2017-06-01 17:22:11 -04:00

1.2 KiB

Workbook-Level Attributes

wb.Workbook stores workbook-level attributes.

Defined Names

wb.Workbook.Names is an array of defined name objects which have the keys:

Defined Name Properties (click to show)
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)

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.

Miscellaneous Workbook Properties

wb.Workbook.WBProps holds other workbook properties:

Key Description
date1904 epoch: 0/false for 1900 system, 1/true for 1904