2017-03-20 09:02:25 +00:00
|
|
|
### 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
|
2017-04-01 07:32:12 +00:00
|
|
|
standard, XLS parsing stores core properties in both places.
|
2017-03-20 09:02:25 +00:00
|
|
|
|
2017-06-01 21:22:11 +00:00
|
|
|
`wb.Workbook` stores [workbook-level attributes](#workbook-level-attributes).
|
2017-03-20 09:02:25 +00:00
|
|
|
|