Description
Returns true if the RuleWidth property has a value.
Syntax
object.HasRuleWidth |
object
Required. Object name, returned by Text.GetTableColumn.
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)