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

TcxCheckComboBoxItems.Add Method

Creates a new item and adds it to the items collection.

#Declaration

Delphi
function Add: TcxCheckComboBoxItem;

#Returns

Type
TcxCheckComboBoxItem

#Remarks

The Add function enables you to create a new item in the collection. Use the object returned by this function to customize the item, i.e. specify its descriptions and enabled status.

The AddCheckItem method enables you to add a new item and initialize its Description and ShortDescription properties.

The following code creates three items in a check combo box editor and sets their description and enabled status as appropriate:

Delphi
var
  I:Integer;
//...
with cxCheckComboBox1.Properties.Items do
begin
  Clear();
  for I := 0 to 2 do
  with Add do
    case I of
    0:
      begin
        Description := 'Sources';
        Enabled := False;
      end;
      1:
      begin
        Description := 'Demos';
        Enabled := True;
      end;
      2:
      begin
        Description := 'Documentation';
        ShortDescription := 'Docs';
        Enabled := True;
      end
    end;
end;
See Also