Vcl.ComCtrls.TTrackBar.TickMarks

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TickMarks: TTickMark read FTickMarks write SetTickMarks default tmBottomRight;

C++

__property TTickMark TickMarks = {read=FTickMarks, write=SetTickMarks, default=0};

Properties

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

Description

Specifies the location of the tick marks.

Set TickMarks to specify where the tick marks should be drawn. TickMarks has these possible values:



Value Meaning

tmBottomRight

Tick marks are on the bottom or right of the track bar, depending of the value of Orientation.

tmTopLeft

Tick marks are on the top or left of the track bar, depending of the value of Orientation.

tmBoth

Tick marks are on both sides of the track bar.



If the TickStyle property is tsNone, the value of TickMarks is ignored.

See Also