Vcl.ComCtrls.TCustomUpDown.Increment

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Increment: Integer read FIncrement write SetIncrement default 1;

C++

__property int Increment = {read=FIncrement, write=SetIncrement, default=1};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomUpDown

Description

Specifies the amount the Position value changes each time the up or down button is pressed.

Use Increment to control the granularity of changes the up-down control can make. Set Increment to indicate the number of units between Min and Max the Position moves whenever the user clicks on one of the arrow buttons. Increment represents the mapping between the units used to specify Min, Max, and Position, and the logical units represented by the up-down control.

See Also