Skip to main content
Tab

ASPxProgressBarBase.Position Property

Gets or sets the current progress bar indicator position.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Decimal "0"

A Decimal value specifyng the position.

Remarks

The Position property represents the progress that the application has made toward completing a specific operation. The available range of values the Position property can accept is determined by the ASPxProgressBarBase.Minimum and ASPxProgressBarBase.Maximum property values.

A percentage value representing the ratio of the Position property’s value with respect to the values of the ASPxProgressBarBase.Minimum and ASPxProgressBarBase.Maximum properties can be displayed within the progress bar, if the ASPxProgressBarBase.ShowPosition property is set to true.

See Also