Row
7 posts tagged with "Row"
add-row
The add-row action adds a row to a table. It belongs to the row category within the data area.
Action Syntax
add-row $variable to $variable
Return Value
This function returns a
$result = add-row
Valid sizes
Examples
// Basic Usage
$grp_item = add-row $r to $t
delete-row
The delete-row action deletes a row from a table. It belongs to the row category within the data area.
Action Syntax
delete-row 123 from $variable
delete-row $variable from $variable
Return Value
This function returns a
first-row
The first-row action Gets the first row of a table or group. It belongs to the row category within the data area.
Action Syntax
first-row of $variable
first-row $variable
Return Value
This function returns a
$result = first-row
Valid sizes
Examples
// Basic Usage
$item = first-row of $Ggroup
Related Actions
- `` -
get-row
The get-row action Gets a specific row by its position number from a table. It belongs to the row category within the data area.
Action Syntax
get-row $variable of $variable
get-row 123 of $variable
Return Value
This function returns a
last-row
The last-row action Gets the last row of a table or group. It belongs to the row category within the data area.
Action Syntax
last-row of $variable
last-row $variable
Return Value
This function returns a
$result = last-row
Valid sizes
Examples
// Basic Usage
$item = last-row of $Ggroup
Related Actions
- `` -
random-row
The random-row action gets a random row from a table of data. It belongs to the row category within the data area.
Action Syntax
random-row of $variable
Return Value
This function returns a
$result = random-row
Valid sizes
Examples
// Basic Usage
$item = random-row of $table
unpack-row
The unpack-row action unpacks the individual row values into seperate values. It belongs to the row category within the data area.
Action Syntax
unpack-row $variable
Valid sizes
Examples
// Basic Usage
unpack-row $Irowvar