aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml')
-rw-r--r--src/qml/types/qqmlbind.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/qml/types/qqmlbind.cpp b/src/qml/types/qqmlbind.cpp
index df429e5bc1..bd893bd2f4 100644
--- a/src/qml/types/qqmlbind.cpp
+++ b/src/qml/types/qqmlbind.cpp
@@ -221,6 +221,23 @@ void QQmlBind::setObject(QObject *obj)
\qmlproperty string QtQml::Binding::property
The property to be updated.
+
+ This can be a group property if the expression results in accessing a
+ property of a \l {QML Basic Types}{value type}. For example:
+
+ \qml
+ Item {
+ id: item
+
+ property rect rectangle: Qt.rect(0, 0, 200, 200)
+ }
+
+ Binding {
+ target: item
+ property: "rectangle.x"
+ value: 100
+ }
+ \endqml
*/
QString QQmlBind::property() const
{