TiSlider.MouseControlStyle

TiSlider See Also

Specifies the mouse control style.

type TiSliderMouseControlStyle = (ismcsSlideOnly, ismcsSlidePage, ismcsGoto);

property MouseControlStyle : TiSliderMouseControlStyle;

Description

Use MouseControlStyle to read or change the mouse control style.

These are the possible values:

Value
Meaning
ismcsSlideOnly
The user must slide the mouse to move the pointer.
ismcsSlidePage
The user must click on the pointer to move with the mouse or click above or below the pointer to move by the KeyPageStepSize.
ismcsGoto
The pointer moves to the mouse position.

Example

Delphi

iComponent.MouseControlStyle := ismcsGoto;

C++ Builder

iComponent->MouseControlStyle = ismcsGoto;

Contents | Index | Previous | Next