Vcl.CheckLst.TCheckListBox.Checked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Checked[Index: Integer]: Boolean read GetChecked write SetChecked;

C++

__property bool Checked[int Index] = {read=GetChecked, write=SetChecked};

Properties

Type Visibility Source Unit Parent
property public
Vcl.CheckLst.pas
Vcl.CheckLst.hpp
Vcl.CheckLst TCheckListBox

Description

Indicates which items are checked.

For each member of the Items array, Checked is true if a check mark appears in the item's check box. Checked corresponds to the cbChecked state; that is, Checked is true when State = cbChecked and false when State = cbUnchecked or State = cbGrayed.

Note: Items that have been disabled using the ItemEnabled property may still have a state of cbChecked and a Checked property of true.

See Also