From fa49d606348a6df44c741f40308bcd87107f82eb Mon Sep 17 00:00:00 2001
From: dsiders
Checked is a Boolean property which indicates if the
control is displayed using its "checked" or "unchecked" state. The value for
the property is always False in TButtonControl, and is
-overridden in descendent classes like TCustomCheckBox.
+overridden in descendent classes like
+TCustomCheckBox/TCheckBox.
@@ -11921,7 +11924,67 @@ enables auto-sizing of the text displayed for the control instance.
+Checked is a Boolean property which indicates if the
+control is displayed using its "checked" or "unchecked" state. The default
+value for the property is False and indicates the control uses its
+unchecked state.
+
+Checked is a published property in TCheckBox and uses the overridden read and
+write access specifiers from TCustomCheckBox (GetChecked and SetChecked). The
+property value is read from and written to the State property using one of
+the TCheckBoxState enumeration values. For example:
+
+Changing the value in Checked causes State to be updated with the corresponding
+TCheckBoxState value, which in turn, calls either the Click method or the
+OnChange event handler.
+
+See State and
+ClicksDisabled for more information.
+
@@ -11958,7 +12021,7 @@ TCheckBox.
+
+
+
+State value
+Checked value
+
+
+cbUnchecked
+False
+
+
+cbChecked
+True
+
+
+cbGrayed
+The value in Checked is not significant.
+