DxRibbonSpinEditItem<TValue>.Increment Property
Specifies the increment value for the spin editor ribbon item.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public TValue Increment { get; set; }
Property Value
Type | Description |
---|---|
TValue | 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.
...
<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.
See Also