TC.vtcUpdateRowCells
Replaces the data in multiple fields.
If the column name or index does not exist, the column and/or the cell referenced by the index is created, and the cell contents are set to the argument value.
Equivalent method in VuGen: lrvtc_update_row1
TC.vtcUpdateRowCells(colNames, rowIndex, values, vtsName);
Arguments
Name | Description |
---|---|
colNames | (string) The names of the columns, delimited by a semicolon. |
rowIndex | (integer) The index number of the field. 1 is the first field in the column. |
values | (string) The values, delimited by a semicolon. |
vtsName (Optional) | (string) The alias of the VTS server. |
Return value
0 on success. Upon a failure, it throws an exception message.
Example
TC.vtcUpdateRowCells("MyColumn1;MyColumn2;MyColumn3", 1, "MyNewValue1;MyNewValue2;MyNewValue3", "MyVts");