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