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

DxSpinEdit<T>.MinValue Property

Specifies the Spin Edit’s minimum value.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public T MinValue { get; set; }

Property Value

Type Description
T

A delegate method that accepts the editor value type as a parameter.

Remarks

To specify the Spin Edit’s maximum value, use the MaxValue property.

The example below demonstrates how to customize the <DxSpinEdit> so it accepts the specified range of values (from 0 to 1).

<DxSpinEdit @bind-Value="DecimalValue" Increment="0.1m" MinValue="0" MaxValue="1" />

@code {
    Decimal DecimalValue { get; set; } = 0.5m;
}

Run Demo: Spin Edit - Custom Increment

See Also