Modules

filter

 

Objects/Functions

module (N/workbook)

SuiteScript 2.0

TableColumn.width

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=TableColumn.width for more information.

N/workbook Module
TableColumn.width
Property Description: The width of the table column when displayed in the UI.
Type: number
Module: N/workbook Module
Parent Object: workbook.TableColumn
Sibling Object Members: TableColumn Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=TableColumn.width

Example:

// Code Example 1
// Add additional code
//...
// View TableColumn.width in a TableDefinition
var myWorkbook = workbook.load({
id: myWorkbookId
});

log.audit({
title: 'TableColumn.width = ',
details: myWorkbook.tableDefinitions[0].columns[0].width
});
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_159068573820.html