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?
↧