Column.label

Property Description

The label for the column.

A label is important if the query object is used as the data source for printing (for example, in the TemplateRenderer.addQuery(options) method in the N/render module).

Type

string (read-only)

Module

N/query Module

Parent Object

query.Column

Sibling Object Members

Column Object Members

Since

2019.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/query Module Script Samples.

            // Add additional code
...
    var myCustomerQuery = query.create({
        type: query.Type.CUSTOMER
    });
    var myLabelColumn = myCustomerQuery.createColumn({
        fieldId: 'currency',
        label: 'Dollars'
    });
    var theLabel = myLabelColumn.label;
...
// Add additional code 

          

Related Topics

General Notices