<< Click to Display Table of Contents >>
Manual > Control Reference > Route > Route Methods >
Deletes a row from a table array variable.
syntax
DelTableRow (
index,
count,
value
)
Parameters
index
Type:
Number
A number indicating which row of value to delete. If 0 is specified, the first row will be deleted.
count
The number of rows to delete.
The value to be removed. Must be a two-dimensional array or a null value (#NOTHING#).
Explanation
The count number of lines will be deleted from the line specified by index.
Example
Delete records (delete rows "Gourp02" and "Gourp03")
var vData = c(c("Gourp01","Gourp02","Gourp03","Gourp04"), c(2,3,4,5)); vData = ::DelTableRow(1, 2, vData);
Supported
○
Script Action
Can be used in server script Ver2 actions
Browser script
Can be used in browser scripts
×
Calculation Expression Syntax
Can be used in expression syntax (e.g. bind syntax)
reference
AddTableRow
InsertTableRow
DelTableRow
ExchangeTableColRow
MergeValue