HasDrawVRule Method

Build 1501 on 14/Nov/2017  This topic last edited on: 23/Mar/2016, at 12:24

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)