Add Property

Build 1501 on 14/Nov/2017  This topic last edited on: 23/Mar/2016, at 12:24

Description

Maximum vertical space that can be added above the tabulation row when vertically justifiyng the whole text.

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 added above the tabulation row when vertically justifiyng the whole text for 1pt.

Dim objTableRow = Text.GetTableRow

if objTableRow.HasAdd then

 objTableRow.Add = objTableRow.Add + 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.

Sub on the row level.

TopAdd and BottomAdd on the cell level.