Vcl.ComCtrls.TTickStyle
Delphi
TTickStyle = (tsNone, tsAuto, tsManual);
C++
enum DECLSPEC_DENUM TTickStyle : unsigned char { tsNone, tsAuto, tsManual };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | Vcl.ComCtrls |
Description
TTickStyle indicates how a track bar determines the increments at which tick marks appear.
TTickStyle has these possible values:
| Value | Meaning |
|---|---|
|
tsAuto |
Tick marks are automatically displayed at increments equal to the value of the Frequency property. |
|
tsManual |
Tick marks are displayed at the Min and Max values. Additional tick marks can be set using the SetTick method. |
|
tsNone |
No tick marks are displayed. |