TC.vtcPopCells
Pops the data in a row as a JavaScript object.
TC.vtcPopCells(vtsName);
Arguments
vtsName. (Optional, string) The alias of the VTS server.
Return value
A promise that is fulfilled with an object upon success, which contains the first field from the columns. If the column is empty or does not exist, the value is null. For example, {col1:"larry",col2:""}
.
Example
(async ()=>{
let datas = await TC.vtcPopCells();
})();