Description
Maximum vertical space that can be subtracted above the tabulation row when vertically justifying the whole text.
It is either a value in millipoints not greater than 65000 = 65pt or one of the five special 'infinite' values: InfA = 65531, InfB = 65532, InfC = 65533, InfD = 65534, InfE = 65535.
Syntax
object.Add [ =mValue | strValue ] |
object
Required. Object name, returned by Text.GetTableRow.
mValue
Value of space, in millipoints not greater than 65000 = 65pt
strValue
Value of space as one of the five special 'infinite' values: InfA = 65531, InfB = 65532, InfC = 65533, InfD = 65534, InfE = 65535
Example
This script increments the maximum vertical space that can be subtracted below the tabulation row when vertically justifiyng the whole text for 1pt.
Dim objTableRow Text.GetTableRow
if objTableRow.HasSub then
objTableRow.Sub = objTableRow.Sub + 1000
end if
Text.SetTableRow (objTableRow)
See also
Add and Sub for the justification of whole text on the table level.
TopAdd and BottomAdd for the vertical justification of cells on the table level.
Add on the row level.
TopAdd and BottomAdd on the cell level.