TCA.vtcClearRow

Clears the values from all fields in a row.

If the row index specified in the argument does not exist, the step runs without returning an error, and no data is changed in VTS.

Equivalent method in VuGen VTS: lrvtc_clear_row

TCA.vtcClearRow(rowIndex, vtsName);

Arguments

Name Description

rowIndex

(integer) The index number of the field. 1 is the first field in the column.
vtsName

(Optional)

(string) The alias of the VTS server.

Return value

A promise that is fulfilled with 0 if completed successfully. Upon failure, an exception is thrown.

Example

Copy code
TCA.vtcClearRow(1,"MyVts").then(function(result){
  TCA.done(result);
}).catch(function (error) {
  TCA.doneWithError(error);
});