Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi everyone!
I have a QQuickPainterItem object in C++. This object has a field as a QML component which I need to change anchors property. How I can do this from C++ in documentation and search I can't find any information about this.
Thanks for the any help!
Use QQmlProperty (:-P see the documentation ;-) )
@ QQmlProperty anchorTopMargin(qmlObject, "anchors.topMargin"); anchorsTopMargin.write(45); @