Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomProgressBarProperties.Min Property

Specifies the minimum value that can be displayed by the progress bar control.

#Declaration

Delphi
property Min: Double read; write;

#Property Value

Type
Double

#Remarks

The range of values that can be displayed by the progress bar control is specified by the Min and Max properties. This means that the Position property can be set to a value that falls between these property values. Note that the Min property cannot be set to a value greater than the Max property value and vice versa.

If the Position and Min properties are set to the same value, the control is empty (no progress bar is displayed). If the ShowText property is True and the ShowTextStyle property value is cxtsPercent the control will display ‘0%‘.

The default value of the Min property is 0.

See Also