Modules

filter

 

Objects/Functions

module (N/workbook)

SuiteScript 2.0

Sort.ascending

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

N/workbook Module
Sort.ascending
Property Description: The ascending sort indicator of the sort.
Type: boolean
Module: N/workbook Module
Parent Object: workbook.Sort
Sibling Object Members: Sort Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Sort.ascending

Example:

// Code Example 1
// Add additional code
//...
// View Sort.ascending in a TableDefinition
var myWorkbook = workbook.load({
id: myWorkbookId
});
log.audit({
title: 'Sort.ascending = ',
details: myWorkbook.tableDefinitions[0].columns[0].sort.ascending
});
//...
// Add additional code

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