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)