1.按照条目的序号来访问
if CheckListBox1.Checked[0] then
2.按照条目的名称来访问
function ItemChecked(ACheckListBox: TCheckListBox
ItemText : string) : boolean;
var
index : integer;
begin
index := ACheckListBox.Items.IndexOf(ItemText);
if index > -1 then
result := ACheckListBox.Checked[index]
else
result := False;
end;