Description
The weight in millipoints of the vertical rule next to the tabulation column.
Syntax
object.RuleWidth [ =mValue ] |
object
Required. Object name, returned by Text.GetTableColumn.
mValue
Value of width.
Example
This script increments the weight of the vertical rules in the selected column(s) for 0.25pt.
Dim objTableCol = Text.GetTableColumn
if objTableCol.HasRuleWidth then
objTableCol.RuleWidth = objTableCol.RuleWidth + 250
end if
Text.SetTableColumn (objTableCol)