"getColumnN"
Returns the content of a column.
Synopsis
getValue(string shape, "getColumnN", int n, dyn_anytype
&result);
Parameters
| Parameter | Description |
|---|---|
| shape | Name of the object |
| n | The index of the column (starts from 0) |
| result | The content of the column |
In the following example, the content of the first column will be returned.
main()
{
dyn_anytype res;
getValue("TABLE1","getColumnN",0,res);
DebugN("The content of the column ", res);
}
