Back to Devexpress

DxRibbonSpinEditItem<TValue>.Increment Property

blazor-devexpress-dot-blazor-dot-dxribbonspinedititem-1-e23557c7.md

latest1.8 KB
Original Source

DxRibbonSpinEditItem<TValue>.Increment Property

Specifies the increment value for the spin editor ribbon item.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(null)]
[Parameter]
public TValue Increment { get; set; }

Property Value

TypeDefaultDescription
TValuenull

The editor value.

|

Remarks

The Increment property specifies the value added to/subtracted from the editor’s value each time a user performs the following actions:

  • Clicks the increment or decrement spin button.
  • Scrolls the mouse wheel while the editor is focused.
  • Presses the Up Arrow or Down Arrow key while the editor is focused.
razor
...
<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
    }
}

The data type of the Value and Increment property values should match.

Implements

DevExpress.Blazor.Ribbon.IRibbonSpinEdit<TValue>.Increment

See Also

DxRibbonSpinEditItem<TValue> Class

DxRibbonSpinEditItem<TValue> Members

DevExpress.Blazor Namespace