TiThermometer.ReverseScale

TiThermometer

Specifies whether the scale is reversed or not.

property ReverseScale : Boolean;

Description

Use ReverseScale to reverse the direction of the scale. By default, when this property is FALSE, if the orientation of the Thermometer is vertical, the scale will start at the bottom of the component and move towards the top. If this property is TRUE and the Thermometer is vertical, then the scale will start at the top of the component and move towards the bottom.

Value
Thermometer Orientation
Meaning
False
Vertical
Scale starts at bottom of component and ends at top.
False
Horizontal
Scale starts at left of component and ends at right.
True
Vertical
Scale starts at top of component and ends at bottom.
True
Horizontal
Scale starts at right of component and ends at left.

Example

Delphi

iComponent.ReverseScale := True;

C++ Builder

iComponent->ReverseScale = True;

Contents | Index | Previous | Next