Skip to main content

TcxCustomCheckComboBox Class

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

Declaration

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