summaryrefslogtreecommitdiffstats
path: root/src/controls/CheckBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/CheckBox.qml')
-rw-r--r--src/controls/CheckBox.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/controls/CheckBox.qml b/src/controls/CheckBox.qml
index 712ddab7b..8d693c709 100644
--- a/src/controls/CheckBox.qml
+++ b/src/controls/CheckBox.qml
@@ -84,6 +84,9 @@ AbstractCheckable {
\c Qt.Checked - The checkbox is checked.
\c Qt.PartiallyChecked - The checkbox is in a partially checked (or
"mixed") state.
+
+ The \l checked property also determines whether this property is
+ \c Qt.Checked or \c Qt.UnChecked, and vice versa.
*/
property int checkedState: checked ? Qt.Checked : Qt.Unchecked
@@ -97,6 +100,8 @@ AbstractCheckable {
Setting \l checkedState to \c Qt.PartiallyChecked will implicitly set
this property to \c true.
+ If this property is \c true, \l checked will be \c false.
+
By default, this property is \c false.
*/
property bool partiallyCheckedEnabled: false