aspnet-devexpress-dot-web-dot-spineditproperties-706561dc.md
Gets or sets the value by which the spin editor’s value is changed when clicking a small increment/decrement spin button.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(typeof(decimal), "1")]
public virtual decimal Increment { get; set; }
<DefaultValue(GetType(Decimal), "1")>
Public Overridable Property Increment As Decimal
| Type | Default | Description |
|---|---|---|
| Decimal | "1" |
A decimal value representing the increment for the spin editor.
|
Use the Increment property to specify the increment for a spin editor. This property value is added to/subtracted from the ASPxSpinEdit.Number property value each time an end-user clicks small (increment/decrement) spin buttons. The visibility of these buttons is controlled by the SpinButtons.ShowIncrementButtons property.
Note
The Increment property synchronizes its value with the editor’s ASPxSpinEdit.Increment property.
See Also