Excel.Interfaces.WorkbookLoadOptions interface
Workbook is the top level object which contains related workbook objects such as worksheets, tables, and ranges. To learn more about the workbook object model, read Work with workbooks using the Excel JavaScript API.
Remarks
Properties
$all | Specifying |
application | Represents the Excel application instance that contains this workbook. |
bindings | Represents a collection of bindings that are part of the workbook. |
tables | Represents a collection of tables associated with the workbook. |
Property Details
$all
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
application
Represents the Excel application instance that contains this workbook.
application?: Excel.Interfaces.ApplicationLoadOptions;
Property Value
Remarks
bindings
Represents a collection of bindings that are part of the workbook.
bindings?: Excel.Interfaces.BindingCollectionLoadOptions;
Property Value
Remarks
tables
Represents a collection of tables associated with the workbook.
tables?: Excel.Interfaces.TableCollectionLoadOptions;
Property Value
Remarks
Office Add-ins