Skip to main content
Tab

SpinEditProperties.Increment Property

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.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(typeof(decimal), "1")]
public virtual decimal Increment { get; set; }

Property Value

Type Default Description
Decimal "1"

A decimal value representing the increment for the spin editor.

Remarks

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