Vcl.ComCtrls.TTrackBar.TickStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TickStyle: TTickStyle read FTickStyle write SetTickStyle default tsAuto;

C++

__property TTickStyle TickStyle = {read=FTickStyle, write=SetTickStyle, default=1};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TTrackBar

Description

Specifies how tick marks are placed on the track bar.

Set TickStyle to specify whether the track bar should display tick marks, and if so, how those tick marks are set. TickStyle 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.



See Also