forked from sheetjs/sheetjs
SheetJS
aff7b95272
- 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
13 lines
460 B
Markdown
13 lines
460 B
Markdown
### Workbook Object
|
|
|
|
`workbook.SheetNames` is an ordered list of the sheets in the workbook
|
|
|
|
`wb.Sheets[sheetname]` returns an object representing the worksheet.
|
|
|
|
`wb.Props` is an object storing the standard properties. `wb.Custprops` stores
|
|
custom properties. Since the XLS standard properties deviate from the XLSX
|
|
standard, XLS parsing stores core properties in both places.
|
|
|
|
`wb.Workbook` stores [workbook-level attributes](#workbook-level-attributes).
|
|
|