Back to Devexpress

DxProgressBar.Value Property

blazor-devexpress-dot-blazor-dot-dxprogressbar.md

latest1.5 KB
Original Source

DxProgressBar.Value Property

Specifies the progress bar value.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(0)]
[Parameter]
public double Value { get; set; }

Property Value

TypeDefaultDescription
Double0

The value.

|

Remarks

The Value property specifies the current progress bar value. MinValue and MaxValue properties limit the range of accepted values.

The progress is measured in percentages and calculated by the following formula: (Value - MinValue) / (MaxValue - MinValue) * 100.

Progress Bar Overview

razor
<DxProgressBar MinValue="100" MaxValue="500" Value="200" />

If the current progress is unknown, set the Indeterminate property to true.

See Also

DxProgressBar Class

DxProgressBar Members

DevExpress.Blazor Namespace