Vcl.ComCtrls.TProgressBar.Min

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Min: Integer read GetMin write SetMin default 0;

C++

__property int Min = {read=GetMin, write=SetMin, default=0};

Properties

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

Description

Specifies the lower limit of the range of possible positions.

Use Max along with the Min property to establish the range of possible positions of a progress bar. When the process tracked by the progress bar begins, the value of Position should equal Min.

Note: On Windows operation systems with a common controls library (comctl32.dll) lower than version 4.70, the value of Min is treated as a 16-bit number. This means that the maximum value allowed by Min is 65,535.

See Also

Code Examples