blazor-devexpress-dot-blazor-dot-dxribbonspinedititem-1-9d84876e.md
Specifies the spin editor item value.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(null)]
[Parameter]
public TValue Value { get; set; }
| Type | Default | Description |
|---|---|---|
| TValue | null |
The editor value.
|
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
}
}
To respond to the value change, handle the ValueChanged event.
The spin editor item supports the following data types:
DevExpress.Blazor.Ribbon.IRibbonSpinEdit<TValue>.Value
See Also
DxRibbonSpinEditItem<TValue> Class