TC.vtcClearCell
Clears the data in a field. If the column or the row index specified in the argument does not exist, the step runs without returning an error and no data in the VTS is changed.
Equivalent method in VuGen: lrvtc_clear_message
TC.vtcClearCell(colName, rowIndex, vtsName);
Arguments
Name | Description |
---|---|
colName | (string) The name of the column. |
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.
Example
(async ()=>{
let ret = await TC.vtcClearCell("MyColumn",1);
})();