Workbook.tables
Property Description |
Table definitions that can be included in a workbook when you create a new workbook. |
Type |
|
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2020.2 |
Syntax
Important:
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/workbook Module Script Samples. Also see Full scripts in the Tutorial: Creating a Workbook Using the Workbook API topic.
// Add additional code
...
// View a workbook's tableDefinition
var myWorkbook = workbook.load({
id: myWorkbookId
});
log.audit({
title: 'Workbook.tableDefinition = ',
details: myWorkbook.tableDefinitions[0]
});
...
// Add additional code