Skip to main content

ProgressBarSettings.Position Property

Gets or sets the current progress bar indicator position.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public int Position { get; set; }

Property Value

Type Description
Int32

An integer value representing 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 ProgressBarProperties.Minimum and ProgressBarProperties.Maximum properties (which can be accessed via ProgressBarSettings.Properties).

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

See Also