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

TcxCustomCheckComboBox Class

Serves as the base class for classes that implement check combo box editors.

#Declaration

Delphi
TcxCustomCheckComboBox = class(
    TcxCustomComboBox
)

#Remarks

TcxCustomCheckComboBox implements the basic functionality of check combo box controls. These controls let an end-user select one or more items in the dropdown window.

A Check Combo Box

The check states of all items are stored in the Value property. This matches the editor’s edit value and consists of a bit for each item. Refer to the Value topic for more information.

Use TcxCustomCheckComboBox as a base class when implementing your own check combo box with custom behavior.

Do not create instances of the TcxCustomCheckComboBox class. Instead use TcxCheckComboBox or its data-aware version (TcxDBCheckComboBox).

See Also