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

TcxSpinEditValueType Enum

Represents the type of a value for spin editors.

#Declaration

Delphi
TcxSpinEditValueType = (
    vtInt,
    vtFloat
);

#Members

Name
vtInt
vtFloat

#Remarks

TcxSpinEditValueType enumerates the types of value which a TcxCustomSpinEdit control can display. A spin editor can represent either integer or double values. To set the value type, use the ValueType member of the editor’s Properties object.

The following table lists all the possible types:

Value Meaning
vtInt A spin editor represents integer values.
vtFloat A spin editor represents floating-point values.
See Also