TC.vtcGetCell
Returns the data in a field.
Equivalent method in VuGen: lrvtc_query_column
TC.vtcGetCell(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 string if completed successfully. If data exists in the specified column and row, it returns a string that represents the data in the specified cell.
If the specified column or index does not exist, it returns null.
Example
TC.vtcGetCell("MyColumn",1,"MyVts");

Returns the data in a field.
Equivalent method in : lrvtc_query_column
Arguments
colName. The name of the column (string).
rowIndex. The index number of the field (integer). 1 is the first field in the column.
vtsName. The alias of the VTS server (string, optional).
Return value (string)
String if data exists in the specified column and row. It returns a null if the specified column or index does not exist.
Example
TC.vtcGetCell("MyColumn",1,"MyVts");