GetDataTableRow
Use this function to retrieve the row contents in a DataTable object. The row to retrieve is specified by the row index.
Syntax
GetDataTableRow (DataTableName, RowIndex)
where:
- DataTableName is the name of the DataTable object in which to get the row.
- RowIndex is the row index of the cell to get.
Syntax example
Create Variable EmpDetails[ ] as STRING
Create Variable RowIndex as NUM
Set Variable RowIndex = 1
Set Variable Status = GetDataTableRow (SalaryTable, $RowIndex$)