"lineCount";

Returns the number of rows in a table.

Synopsis

getValue(string shape, "lineCount", int &n);

shape.lineCount();

Parameters

Parameter Description
shape Name of the object
n Number of rows in the table

Description

The function "lineCount"; can be used to determine the number of rows in a table.

Example

Displays the number of rows in the log viewer.

 main()
{
  DebugN(table.lineCount());
}

Assignment

Table