Skip to main content
Tab

ASPxProgressBarBase.Maximum Property

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

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 value of the progress bar range.

Remarks

The Maximum property specifies the upper limit of the ASPxProgressBarBase.Position property. When the value of the ASPxProgressBarBase.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 ASPxProgressBarBase.Position to indicate that an operation is complete.

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

See Also