TruClient - Web VTS asynchronous functions
The following VTS functions are available:
| Function | Description |
|---|---|
| TCA.vtcAddCell | Adds a new cell with the specified value in the last field of a column. |
| TCA.vtcAddCells | Adds the data in multiple columns. |
| TCA.vtcAddUniqueCell | Sets the last field of a column to a value, if the value does not already exist in the column. |
| TCA.vtcClearCell | Clears the data in a field. |
| TCA.vtcClearColumn | Clears all data in a column. |
| TCA.vtcClearRow | Clears the values from all fields in a row. |
| TCA.vtcColumnSize | Returns the number of fields that contain data in a column. |
| TCA.vtcConnect | Creates a connection to the VTS server (supports HTTP). |
| TCA.vtcConnectEx | Creates a connection to the VTS server. |
| TCA.vtcCreateColumn | Creates a column. |
| TCA.vtcDisconnect | Disconnects from the server. |
| TCA.vtcGetCell | Returns the data in a field. |
| TCA.vtcGetRowCells | Returns the data in a row as a JavaScript object. |
| TCA.vtcIncrement | Increments a counter stored in a field. |
| TCA.vtcPopCell | Pops the first field from a column. |
| TCA.vtcPopCells | Pops the data in a row as a JavaScript object. |
| TCA.vtcPopMultipleCells | Pops the first fields from specified columns. |
| TCA.vtcRotateCell | Retrieves the first field from the specified column and moves the value to the bottom. |
| TCA.vtcRotateCells | Retrieves the first field from all columns and moves the values to the bottom. |
| TCA.vtcRotateMultipleCells | Retrieves the first field from the specified columns and moves the values to the bottom. |
| TCA.vtcSearchRow | Searches for a row containing specific values in specific columns. |
| TCA.vtcUpdateAllMessageIfequals | Replaces a specific value inside a set of columns with a new value. |
| TCA.vtcUpdateCell | Replaces the data in a field. |
| TCA.vtcUpdateEqualsCell | Replaces the data in a field, if the current data equals a given value. |
| TCA.vtcUpdateRowCells | Replaces the data in multiple fields. |

