Hello freinds,

I have a question. Say I have this

Qt Code:
  1. ....
  2. Rectangle{
  3. id::root
  4. property string mystring:""
  5.  
  6. MyPlugin{
  7.  
  8. Component.onCompleted: {
  9. setString("Hello");
  10. }
  11. }
  12.  
  13. }
To copy to clipboard, switch view to plain text mode 

How can i access my string mystring from my plugins method say componentComplete(), which is an implementation from QQmlParserStatus, or from Q_INVOKABLE MyPlugin::setString Q_INVOKABLE ???