TiSlidingScale.PointerOrientation

TiSlidingScale See Also

Specifies how the Pointer is oriented with respect to the Scale.

type TiPointerOrientation = (iosBottomRight, iosTopLeft);

property PointerOrientation : TiPointerOrientation;

Description

Set PointerOrientation to specify whether the pointer is on bottom/right or top/left of the scale, depending on the Orientation property of the control.

These are the possible values:

Value
Meaning
iosBottomRight
Underneath scale (Orientation = ioHorizontal) or to the right of the scale (Orientation = ioVertical).
iosTopLeft
On top of scale (Orientation = ioHorizontal) or to the left of the scale (Orientation = ioVertical).

Example

Delphi

iComponent.PointerOrientation := iosBottomRight;

C++ Builder

iComponent->PointerOrientation = iosBottomRight;

Note:
Has no effect if PointerStyle = isspsLine or isspsDualArrow since the pointers are essentially hidden, except for the Pointer Line, or the dual arrows would look the same if swapped.

Contents | Index | Previous | Next