blazor-devexpress-dot-blazor-dot-dxribbonspinedititem-1-e23557c7.md
Specifies the increment value for the spin editor ribbon item.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(null)]
[Parameter]
public TValue Increment { get; set; }
| Type | Default | Description |
|---|---|---|
| TValue | null |
The editor value.
|
The Increment property specifies the value added to/subtracted from the editor’s value each time a user performs the following actions:
...
<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.
DevExpress.Blazor.Ribbon.IRibbonSpinEdit<TValue>.Increment
See Also
DxRibbonSpinEditItem<TValue> Class