forrow
Executes some stuff for row with specified index in the table
Syntax
forrow("tableName","index")
Function arguments
- tableName – (String) The name of the table for which’s rows statement is to be executed
- index – (Decimal) Index of the row to process. Usualy it is the return value of AddTableRow function.
Return value
This function does not return a value.
Examples
Example 1:
forrow("table1",AddTableRow("table1")){ doSomething(); }