TiSlider.TrackStyle

TiSlider See Also

Specifies the track style.

type TiSliderTrackStyle = (istsBox, istsLine, istsBevelLowered, istsBevelRasied);

property TrackStyle : TiSliderTrackStyle;

Description

Use TrackStyle to read or change the track style.

These are the possible values:

Value
Meaning
istsBox
3D sunken rectangle
istsLine
3D lowered beveled line using TrackColor
istsBevelLowered
3D lowered beveled line using standard Windows colors
istsBevelRasied
3D raised beveled line using standard Windows colors

Example

Delphi

iComponent.TrackStyle := istsBox;

C++ Builder

iComponent->TrackStyle = istsBox;

Contents | Index | Previous | Next