Skip to main content

TcxEditButtonKind Enum

Enumerates supported editor button content types.

Declaration

TcxEditButtonKind = (
    bkEllipsis,
    bkDown,
    bkGlyph,
    bkText
);

Members

Name Description Example
bkEllipsis

An editor button displays an ellipsis.

All property values that define editor button content have no effect in this mode.

VCL Editors Library: The Predefined Down Glyph

bkDown

Default. An editor button displays the predefined Down glyph (the drop-down button glyph like in a combo box editor).

All property values that define editor button content have no effect in this mode.

VCL Editors Library: The Predefined Down Glyph

bkGlyph

An editor button displays a custom glyph defined in the ImageIndex or Glyph property.

The Glyph property has higher priority, and the Caption property value is ignored in this mode.

VCL Editors Library: The Predefined Down Glyph

bkText

An editor button displays custom text assigned to the button’s Caption property.

The button’s ImageIndex and Glyph properties have no effect in this mode.

VCL Editors Library: The Predefined Down Glyph

Remarks

An editor button can display a glyph, ellipsis, or text.

Direct TcxEditButtonKind Type Reference

The TcxCustomEditButton.Kind property references the TcxEditButtonKind type.

See Also