HasFixed Method

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

Description

Returns true if the Fixed property has a value.

Syntax

object.HasFixed

object

Required. Object name, returned by Text.GetTableColumn.

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)