Fixed Property

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

Description

Returns or sets the tabulation column fixed width property.

If the tabulation column width is fixed, it won't change even if you change the width of the frame where the table flows, or >m..< tag (if the table element has no frame associated). Otherwise, the column width will vary proportionally with the frame width />m...< value.

Returns True if the width of the tabulation column is fixed, or false if the width of the column varies automatically with the text geometry width.

Syntax

object.Fixed [ =bStatus ]

object

Required. Object name, returned by Text.GetTableColumn.

bStatus

True or False

Example

This script toggles the fixed status of the selected column(s).

Dim objTableCol = Text.GetTableColumn

if objTableCol.HasFixed then

 objTableCol.Fixed = NOT objTableCol.Fixed

end if

Text.SetTableColumn (objTableCol)