Skip to main content

TcxCheckComboBoxItems.Add Method

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

Declaration

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:

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