Description
Maximum space that can be added below the text of the cell when vertically justifiyng the cell itself.
Syntax
object.BottomAdd [ =mValue | strValue ] |
object
Required. Object name, returned by Text.GetTableCell.
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 sets the maximum space that can be added below the text of the cell when vertically justifiyng the cell itself to 3pt
Dim objTableCell = Text.GetTableCell
objTableCell.BottomAdd = 3000
Text.SetTableCell (objTableCell)
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.
TopAdd on the cell level.