"getColumnN"

Returns the content of a column.

Synopsis

get Value(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

Description

Returns the content of a column.

Example

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);
}

Assignment

Table