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)