Description
Returns true if the BottomAdvance property has a value.
Syntax
object.HasBottomAdvance |
object
Required. Object name, returned by Text.GetTableCell.
Example
This script uses HasBottomAdvance to determine if it is possible to increment the bottom margin of all selected cells for 1pt;
Dim objTableCell = Text.GetTableCell
If objTableCell.HasBottomAdvance then
objTableCell.BottomAdvance = objTableCell.BottomAdvance + 1000
end if
Text.SetTableCell (objTableCell)