Description
Retrieves the value of the cell in the specified row of the parameter in the run-time Data Table.
Syntax
DTParameter.ValueByRow(RowNum)
Argument
Type
Description
RowNum Number Indicates the row of the parameter that should be returned. (Row numbers start with 1.)
Example
The following example uses the ValueByRow property to find the value in the 4th row of the Destination parameter (column) in the "ActionA" sheet of the run-time Data Table.
DataTable.GetSheet("ActionA").GetParameter("Destination").ValueByRow(4)
For example:
DataTable.GetSheet("Action1").GetParameter("ABC").ValueByRow(1)