"columnCount"
Defines the number of columns.
Synopsis
getValue(string shape, "columnCount", int &n);
shape.columnCount ();
Parameters
| Parameter | Description |
|---|---|
| shape | Name of the object |
| n | Number of columns |
Description
Returns the number of columns in the table.
Example
main()
{
shape table=getShape("table123");
DebugN(table.columnCount());
// Outputs the number
}
Assignment
Table