summaryrefslogtreecommitdiff
path: root/doc/src/declarative
diff options
context:
space:
mode:
authorGeir Vattekar <geir.vattekar@nokia.com>2011-08-24 14:50:12 +0200
committerGeir Vattekar <geir.vattekar@nokia.com>2011-08-24 14:50:12 +0200
commit0847f34c977635d7d39f6947ad910d2abb0bd0ce (patch)
treeef5c4c679b77a448d72223731124edaeea6de29a /doc/src/declarative
parent656d914c4d777d47ac7dfbb76e0fc8a145e6e25c (diff)
downloadqt4-tools-0847f34c977635d7d39f6947ad910d2abb0bd0ce.tar.gz
Doc: Small addition to the QML anchor layout docs
Task-number: QTBUG-15514 Reviewed-by: David Boddie
Diffstat (limited to 'doc/src/declarative')
-rw-r--r--doc/src/declarative/anchor-layout.qdoc7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/src/declarative/anchor-layout.qdoc b/doc/src/declarative/anchor-layout.qdoc
index 41b04e88c8..e93e5399f9 100644
--- a/doc/src/declarative/anchor-layout.qdoc
+++ b/doc/src/declarative/anchor-layout.qdoc
@@ -53,7 +53,12 @@ Rectangle { id: rect1; ... }
Rectangle { id: rect2; anchors.left: rect1.right; ... }
\endcode
-In this case, the left edge of \e rect2 is bound to the right edge of \e rect1, producing the following:
+Each Item has two properties for each anchor line: one to bind from and one to bind to. The properties to bind
+from are contained in the \l{Item::}{anchors} attached property (seen as \c {anchors.left} above).
+The properties to bind to are normal properties (seen as \c {rect1.right} above).
+This way, each item can have several bindings to the same anchor line. Note that the properties to bind to are
+not visible in the documentation for Item.
+So in the example above, the left edge of \e rect2 is bound to the right edge of \e rect1, producing the following:
\image edge1.png