Description
Row height step in millipoints.
The height of the row is rounded to a multiple of this value, if the value is zero no rounding occurs.
Syntax
object.Step [ =mValue ] |
object
Required. Object name, returned by Text.GetTableRow.
mValue
Value of rounding.
Example
This script creates a new table with 4 columns and 8 rows. and the rounding value of 2000, which means the row height must be an even number:
Dim objTableRow = Text.GetTableRowumn
objTableRow.Step = 2000
Text.SetTableRow (objTableRow)