TCA.vtcRotateCells
Retrieves the first field from all columns and moves the values to the bottom.
Equivalent method in VuGen VTS: lrvtc_rotate_row
TCA.vtcRotateCells(option, vtsName);
Arguments
Name | Description |
---|---|
option | (integer) Defines how the values are rotated.
|
vtsName (Optional) | (string) The alias of the VTS server. |
Return value
A promise fulfilled with an object, which contains the first field from the columns. If there is no data in a row, a null value is retrieved.
If a column is empty, the value is an empty string. For example, {col1:"larry",col2:""}
.
Example
TCA.vtcRotateCells (0, "MyVts").then(function(result){
TCA.done(result);
}).catch(function (error) {
TCA.doneWithError(error);
});