Vcl.ComCtrls.TTrackBar.PageSize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PageSize: Integer read FPageSize write SetPageSize default 2;

C++

__property int PageSize = {read=FPageSize, write=SetPageSize, default=2};

Properties

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

Description

Specifies the amount Position is changed when the PageUp or PageDown key is pressed, or when the bar is clicked.

Set PageSize to the distance along the track bar that corresponds to a single view. A slider marks the current Position. The Page Up key increments the value of Position by PageSize, and Page Down key decrements the value of Position by PageSize.

Use the LineSize property to set the number of ticks moved using the arrow keys.

See Also