TC.vtcAddCells
Adds data in multiple columns.
If the columns specified in the argument do not exist, the columns are created, and the cell contents are set to the argument values.
Equivalent method in VuGen: lrvtc_send_row1
TC.vtcAddCells(colNames, values, option, vtsName);
Arguments
Name | Description |
---|---|
colNames | (string) Names of the columns, delimited by a semicolon. |
values | (string) Values, delimited by a semicolon. |
option | (number) Defines how the values are added.
|
vtsName (Optional) | (string) Alias of the VTS server. |
Return value
A promise that is fulfilled with 0 if completed successfully.
Example
(async ()=>{
let ret = await TC.vtcAddCell("MyColumn1", "myValue1");
})();