Vcl.StdCtrls.TCheckBox.Checked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Checked: Boolean read GetChecked write SetChecked stored IsCheckedStored default 0;

C++

__property Checked = {default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCheckBox

Description

Specifies whether the check box control is checked.

Note: When you change the value of the Checked property programmatically, the OnClick event of the check box control occurs. Do not modify the value of the Checked property in the event handler of the OnClick event, because that leads into a deadlock situation.

See Also