Description
The name of the color of the vertical rule next to the tabulation column.
Syntax
object.RuleColor [ =strColorName ] |
object
Required. Object name, returned by Text.GetTableColumn.
strColorName
Color name.
Example
This script sets the color of vertical rules to Magenta.
Dim objTableCol = Text.GetTableColumn
objTableCol.RuleColor = "M"
Text.SetTableColumn (objTableCol)