Description
The weight in millipoints of the vertical rule between the tabulation columns.
Note: the rules are actually drawn right to the columns, so the rule right to the last column will coincide with the table border (if any).
Syntax
object.VRuleWidth [ =mWeight ] |
object
Required. Object name, returned by Text.GetNewTable or Text.GetCurTable.
mWeight
Rule weight.
Example
This script creates a new table with 4 columns and 8 rows, and with 0.5pt rules between the tabulation columns.
Dim objNewTable = Text.GetNewTable
objNewTable.NColumns = 4
objNewTable.NRows = 8
objNewTable.VRuleWidth = 500
Text.InsTable (objNewTable)