Description
The name of the color of the vertical rule between the tabulation columns.
Syntax
object.VRuleColor [ =strColorName ] |
object
Required. Object name, returned by Text.GetNewTable or Text.GetCurTable.
strColorName
Color name.
Example
This script creates a new table with 4 columns and 8 rows, with 0.5pt rules between the tabulation columns, in Magenta color.
Dim objNewTable = Text.GetNewTable
objNewTable.NColumns = 4
objNewTable.NRows = 8
objNewTable.VRuleWidth = 500
objNewTable.VRuleColor = "M"
Text.InsTable (objNewTable)