RuleWidth Property

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

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)