Skip to main content
A newer version of this page is available. .
Tab

ProgressBarProperties.Minimum Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(typeof(decimal), "0")]
public decimal Minimum { get; set; }

Property Value

Type Default Description
Decimal "0"

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

Remarks

The Minimum property specifies the lower limit of the ASPxProgressBar.Position property. When the value of the ASPxProgressBar.Position property is equal to the value of the Minimum property, the progress bar is empty.

The maximum position of the progress bar range is defined by the ProgressBarProperties.Maximum property.

Note

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

See Also