"getLineN"
Returns the elements of row "n" in a dyn_var.
Synopsis
getValue(string shape, "getLineN", int n, dyn_anytype &result);
shape.getLineN(int n);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
n | Row index, starting at 0 |
result | Dynamic array containing the row contents |
Description
Returns the elements of row "n" in a dyn_var.
The function getLineN does not return the content of a filtered table.
Example
Displays the first row of "table1"; in the log viewer.
main()
{
DebugN(table1.getLineN(0));
}
Assignment
Table