Excel.Interfaces.WorkbookData interface
An interface describing the data returned by calling workbook.toJSON()
.
Properties
bindings | Represents a collection of bindings that are part of the workbook. |
names | Represents a collection of workbook-scoped named items (named ranges and constants). |
tables | Represents a collection of tables associated with the workbook. |
worksheets | Represents a collection of worksheets associated with the workbook. |
Property Details
bindings
Represents a collection of bindings that are part of the workbook.
bindings?: Excel.Interfaces.BindingData[];
Property Value
Remarks
names
Represents a collection of workbook-scoped named items (named ranges and constants).
names?: Excel.Interfaces.NamedItemData[];
Property Value
Remarks
tables
Represents a collection of tables associated with the workbook.
tables?: Excel.Interfaces.TableData[];
Property Value
Remarks
worksheets
Represents a collection of worksheets associated with the workbook.
worksheets?: Excel.Interfaces.WorksheetData[];
Property Value
Remarks
Office Add-ins