TcxCheckComboBoxItem.Description Property
Specifies the string which represents an item in the dropdown window of a check combo box editor.
Declaration
property Description: TCaption read; write;
Property Value
Type |
---|
TCaption |
Remarks
The following code changes the description of the first item displayed by the dropdown window.
procedure TForm1.Button1Click(Sender: TObject);
begin
cxCheckComboBox1.Properties.Items[0].Description := 'Changed item';
end;
See Also