Vcl.ComCtrls.TTrackBar.LineSize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property LineSize: Integer read FLineSize write SetLineSize default 1;

C++

__property int LineSize = {read=FLineSize, write=SetLineSize, default=1};

Properties

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

Description

Indicates the amount the value of Position changes when the user presses the arrow keys.

Use LineSize to specify the distance along the slider that represents a single unit. The current Position is marked by a slider. The right and down arrow keys increment the value of Position by LineSize, and the left and up arrow keys decrement the value of Position by LineSize.

Use the PageSize property to set the number of ticks moved using the Page Up and Page Down keys.

See Also