VRuleColor Property

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

Description

The name of the color of the vertical rule between the tabulation columns.

Syntax

object.VRuleColor [ =strColorName ]

object

Required. Object name, returned by Text.GetNewTable or Text.GetCurTable.

strColorName

Color name.

Example

This script creates a new table with 4 columns and 8 rows, with 0.5pt rules between the tabulation columns, in Magenta color.

Dim objNewTable = Text.GetNewTable

objNewTable.NColumns = 4

objNewTable.NRows = 8

objNewTable.VRuleWidth = 500

objNewTable.VRuleColor = "M"

Text.InsTable (objNewTable)