Vcl.CheckLst.TCheckListBox.State

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property State[Index: Integer]: TCheckBoxState read GetState write SetState;

C++

__property Vcl::Stdctrls::TCheckBoxState State[int Index] = {read=GetState, write=SetState};

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, State indicates whether its check box is selected (cbChecked), deselected (cbUnchecked), or dimmed (cbGrayed).

Note: cbGrayed corresponds to the indeterminate state.

State combines the information provided by the Boolean Checked property and the Boolean ItemEnabled property:

See Also

Code Examples