TiSwitchSlider.Orientation

TiSwitchSlider See Also

Specifies whether the control is horizontal or vertical.

type TiOrientation = (ioVertical, ioHorizontal);

property Orientation : TiOrientation;

Description

Set Orientation to specify whether the control is horizontal or vertical.

These are the possible values:

Value
Meaning
ioVertical
Vertical with the Min at the bottom and the Max at the top.
ioHorizontal
Horizontal with the Min at the left and the Max at the right.

Example

Delphi

iComponent.Orientation := ioVertical;

C++ Builder

iComponent->Orientation = ioVertical;

Contents | Index | Previous | Next