Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

How to know if a property has a property binding?

$
0
0
Is there a way to know if a property has a property binding or is just a constant? For example, the following binds object.x to root.x: Window {   id: root   x: object.x } When a button is clicked, root.x holds a constant: Button {   onClicked: {     root.x = 100   } } So how do we check if root.x is currently bound to object.x or is just a constant without binding?

Viewing all articles
Browse latest Browse all 4972

Trending Articles