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

TcxEditButtonKind Enum

Enumerates supported editor button content types.

#Declaration

Delphi
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