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
1 if completed successfully. If unsuccessful, it throws an exception message.
Example
TC.vtcAddCells("MyColumn1;MyColumn2;MyColumn3", "MyValue1;MyValue2;MyValue3", 0, "MyVts");