ASPxSpinEdit

Editor Description
ShowIncrementButtons = False
ShowLargeIncrementButtons = True
NumberType = Integer
Increment = 2
LargeIncrement = 10
NumberType = Integer
MinValue = 10
MaxValue = 16
DecimalPlaces = 2
Increment = 10.253
Page UI Culture = 
v
Description
C#
VB
ASPX

This demo illustrates the primary features of the ASPxSpinEdit.

The ASPxSpinEdit control enables your end-users to edit numeric values with ease by clicking small or large increment buttons. The visibility of these spin buttons is controlled by the SpinButtons.ShowIncrementButtons and SpinButtons.ShowLargeIncrementButtons properties. To define the position of spin button within the editor, the SpinButtons.Position property can be used. The increments with which the editor's value is changed when a small or large spin button is clicked can be defined by using the Increment and LargeIncrement properties respectively.

The ASPxSpinEdit can function in float or integer editing mode, which is controlled by the NumberType property. In integer mode (when the NumberType property is set to Integer), float value input is disabled and float values displayed within the editor are automatically rounded after they has been modified. In float mode, culture specific separators are supported, allowing decimal separators to display uniquely in various cultures. The number of decimal places can be defined using the DecimalPlaces property.

The minimum and maximum allowed values can be defined via the MinValue and MaxValue properties, which enables end-user input to be limited by the specified range.