Description
The string of markup commands automatically applied to all the cells of the tabulation column.
Syntax
object.Cmds [ =strCmds ] |
object
Required. Object name, returned by Text.GetTableColumn.
strCmds
Color name.
Example
This script sets the alignment in the selected columns to right.
Dim objTableCol = Text.GetTableColumn
if objTableCol.HasCmds then
objTableCol.Cmds = ">pqr<"
end if
Text.SetTableColumn (objTableCol)