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.Max Property

Specifies the maximum value that can be displayed by the progress bar.

#Declaration

Delphi
property Max: Double read; write;

#Property Value

Type
Double

#Remarks

The value displayed by the progress bar control is specified by its Position property. This property can be set to a value within the range specified by the Min and Max properties. Note that the Max property cannot be set to a value less than the Min property value, and vice versa.

When the Position property value is equal to the Max value, the progress bar completely occupies the client area of the control. If the ShowText property is True and the ShowTextStyle property value is cxtsPercent the control will display ‘100%‘.

The default value of the Max property is 100.

See Also