Skip to main content
All docs
V25.1
  • DxRibbonSpinEditItem<TValue>.Value Property

    Specifies the spin editor item value.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public TValue Value { get; set; }

    Property Value

    Type Description
    TValue

    The editor value.

    Remarks

    Use the Value property to specify the editor’s value or to bind the value to a data source object. You can use the @bind attribute to bind the Value property to a data field. Refer to the following topic for details: Two-Way Data Binding.

    ...
    <DxRibbonSpinEditItem Value="@CurrentFontSize"
                          ValueChanged="@((int newSize) => OnFontSizeChanged(newSize))"
                          MinValue="6"
                          MaxValue="32"
                          Increment="2"
                          Width="100px"/>
    ...
    @code {
        private int CurrentFontSize { get; set; } = 8;
    
        void OnFontSizeChanged(int newSize) {
            // Your code
        }
    }
    

    SpinEdit Ribbon Item

    To respond to the value change, handle the ValueChanged event.

    The spin editor item supports the following data types:

    See Also