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

TcxCustomSpinEditProperties.Circular Property

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 MinValue or MaxValue property value is taken into account only if the corresponding property is set to True within the AssignedValue property.

The default value of the Circular property is False.

See Also