Cmds Property

Build 1501 on 14/Nov/2017  This topic last edited on: 23/Mar/2016, at 12:24

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)