Skip to main content
All docs
V25.1
  • DxRibbonSpinEditItem<TValue>.ValueChanged Event

    Fires after the spin editor’s value changes.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public EventCallback<TValue> ValueChanged { get; set; }

    Parameters

    Type Description
    TValue

    The new editor value.

    Remarks

    Handle the ValueChanged event to respond to the Value change.

    ...
    <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

    See Also