TC.vtcPopCell

Pops the first field from a column.

Equivalent method in VuGen: lrvtc_retrieve_message

TC.vtcPopCell(colName, vtsName);

Arguments

Name Description

colName

(string) The name of the column.
vtsName

(Optional)

(string) The alias of the VTS server.

Return value

A promise that is fulfilled with a string upon success. The string is the value of the first index in the column, or null if the column is empty or does not exist.

Example

Copy code
(async ()=>{
    let data = await TC.vtcPopCell("MyColumn1");   
})();