Height

Description

The height of the column or other control.

Value

An integer in the unit of measure specified for the DataWindow object. Units of measure include PowerBuilder (normalized) units, thousandths of an inch (1000 = 1 inch), thousandths of a centimeter (1000 = 1 centimeter), or pixels.

Example

The following statement causes the height of a rectangle to be 160 normalized units if the state column for the row has the value NY. Otherwise, the rectangle is 120 normalized units high:

if (state = 'NY', 160, 120)