QML property Plugin question
-
Hi all, is it possible to update a property in a qml file from a c++ plugin?
I want to create a plugin that will test all my property onChange events.
In QML
@
property int someProp: 0onSomePropChanged:{
---Some code
}
@I was hoping I could write a plugin that would update someProp and I could see if the code runs.
Thanks