Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SpinEdit.Increment Property

Gets or sets a value by which the editor’s value changes each time the editor is spun. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public decimal Increment { get; set; }

#Property Value

Type Description
Decimal

A decimal value representing the increment for the spin editor.

#Remarks

If the SpinEdit.IsFloatValue property is set to true, the increment value is a float. Otherwise, it is rounded to the nearest integer.

An end user can increment or decrement the editor’s value by pressing the UP or DOWN ARROW keys, scrolling the mouse wheel, or clicking the editor’s spin buttons. The editor’s value can also be incremented or decremented from code by calling the TextEdit.SpinUp or TextEdit.SpinDown methods, respectively.

See Also