辰峰微网

TcxCheckComboBoxItems.Add

Jack·高峰 1891 阅读
文章摘要

TcxCheckComboBoxItems.Add

TcxCheckComboBoxItems See Also

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



function Add: TcxCheckComboBoxItem;

 

Description

The Add function enables y...

当前字体大小 15px
12px 50px

TcxCheckComboBoxItems.Add

TcxCheckComboBoxItems See Also

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



function Add: TcxCheckComboBoxItem;

 

Description

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;

分享到:
收藏

    发表评论