Column.isDisplay

Property Description

Indicates whether the column is displayed.

Type

boolean

Supported Script Types

Client and server scripts

For more information, see SuiteScript 2.x Script Types.

Module

N/record Module

Sibling Object Members

Column 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/record Module Script Samples.

            // Add additional code
...
var sublistObj = recordObj.getSublist({
    sublistId: 'sublistId'
});
var columnObj = sublistObj.getColumn({
    fieldId: 'columnId'
});

columnObj.isDisplay = false;  // set the property value

var isDisplay = columnObj.isDisplay;  // get the property value
...
// Add additional code 

          

General Notices