Vcl.ComCtrls.TTrackBar.Frequency

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Frequency: Integer read FFrequency write SetFrequency default 1;

C++

__property int Frequency = {read=FFrequency, write=SetFrequency, default=1};

Properties

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

Description

Specifies the increment between tick marks on the track bar.

Use Frequency to specify the spacing of the tick marks, using the logical units used by the Position property. For example, a Frequency of 5 sets a tick mark at every fifth possible increment. To provide visual feedback about the units used by the track bar, set Frequency to LineSize or PageSize.

Note: If the value of the TickStyle property is not set to tsAuto, the value of Frequency is ignored.

See Also