RuleColor Property

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

Description

The name of the color of the vertical rule next to the tabulation column.

Syntax

object.RuleColor [ =strColorName ]

object

Required. Object name, returned by Text.GetTableColumn.

strColorName

Color name.

Example

This script sets the color of vertical rules to Magenta.

Dim objTableCol = Text.GetTableColumn

objTableCol.RuleColor = "M"

Text.SetTableColumn (objTableCol)