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

TcxCustomCheckComboBoxProperties.Items Property

Specifies the collection of items to display in the dropdown window.

#Declaration

Delphi
property Items: TcxCheckComboBoxItems read; write;

#Property Value

Type
TcxCheckComboBoxItems

#Remarks

The Items property represents a collection of objects displayed in the list part of TcxCustomCheckComboBox descendants. This provides access to individual items and their properties and allows you to add and remove individual elements.

At design time, you can manipulate check combo box control items using the standard collection editor, which can be activated via the Object Inspector:

Object Inspector

Clicking the ellipsis button activates the items editor:

Items Editor

To add, move and remove items, use the buttons displayed at the top of the editor.

You can select item(s) in the editor and then switch to the Object Inspector in order to set properties:

Item Properties

At run-time, you create items using the Add and AddCheckItem methods.

See Also