Description
Returns true if the DrawVRule property has a value.
Syntax
object.HasDrawVRule |
object
Required. Object name, returned by Text.GetTableCell.
Example
This script toggles the rule next to the selected cells.
Dim objTableCell = Text.GetTableCell
if objTableCell.HasDrawVRule then
objTableCell.DrawVRule = NOT objTableCell.DrawVRule
end if
Text.SetTableCell (objTableCell)