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