Description
Returns true if the Width property has a value.
Syntax
object.HasWidth |
object
Required. Object name, returned by Text.GetTableColumn.
Example
This script increment the width of the selected column(s) for 1pt.
Dim objTableCol = Text.GetTableColumn
if objTableCol.HasWidth then
objTableCol.Width = objTableCol.Width + 1000
end if
Text.SetTableColumn (objTableCol)