NColumns Property

Build 1501 on 14/Nov/2017  This topic last edited on: 23/Mar/2016, at 12:23

Description

The number of columns of the table.

Syntax

object.NColumns [ =iNumber ]

object

Required. Object name, returned by Text.GetNewTable or Text.GetCurTable.

iNumber

Number of columns.

Example

This script creates a new table with 4 columns and 8 rows..

Dim objNewTable = Text.GetNewTable

objNewTable.NColumns = 4

objNewTable.NRows = 8

Text.InsTable (objNewTable)