TcxCustomSpinEditProperties.Circular Property
In This Article
Determines whether the increment/decrement action has a “circular” effect.
#Declaration
Delphi
property Circular: Boolean read; write; default False;
#Property Value
Type | Default |
---|---|
Boolean | False |
#Remarks
When the Circular property is set to True and an end-user exceeds the upper/lower bounds (which are specified by the MaxValue and MinValue properties) by incrementing/decrementing the spin editor’s value, then its value is set to the opposite bound value, the MinValue or MaxValue correspondingly.
Note
The Min
The default value of the Circular property is False.
See Also