Description
True if the vertical rule next to the cell should be drawn.
You can get/set the horizontal rule color, shade, weight, and dash on a table level with the VRuleColor, VRuleGray, VRuleWidth, VRuleDash properties, or on the given column level with RuleColor, RuleGray, RuleWidth properties.
You can get the status, or turn on/off the horizonal rule below a cell with the DrawHRule property.
Syntax
object.DrawVRule [ =bStatus ] |
object
Required. Object name, returned by Text.GetTableCell.
bStatus
True or False
Example
This script sets the rule next to the selected cells.
Dim objTableCell = Text.GetTableCell
objTableCell.DrawVRule = true
Text.SetTableCell (objTableCell)