Skip to main content

TcxSpinEditValueType Enum

Represents the type of a value for spin editors.

Declaration

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