Skip to main content
Tab

ProgressBarProperties.Maximum Property

Gets or sets the maximum range value of the progress bar control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(typeof(decimal), "100")]
public decimal Maximum { get; set; }

Property Value

Type Default Description
Decimal "100"

A Decimal value specifying the maximum range value of the progress bar.

Remarks

The Maximum property specifies the upper limit of the ASPxProgressBar.Position property. When the value of the ASPxProgressBar.Position property is equal to the value of the Maximum property, the progress bar is completely filled.

Use this property to provide the value required for the ASPxProgressBar.Position to indicate that an operation is complete.

The minimum position of the progress bar range is defined by the ProgressBarProperties.Minimum property.

Note

The Maximum property synchronizes its value with the progress bar’s ASPxProgressBar.Maximum property.

See Also