Hey guys,

Is there a way to specify the "first load" order for QML properties.

For instance:

Qt Code:
  1. Item {
  2. loadMeFirst: 1
  3.  
  4. width: 200
  5. height: 200
  6. }
To copy to clipboard, switch view to plain text mode 

When calling create QDeclarativeComponent::create(QDeclarativeContext * context = 0), I want "setLoadMeFirst" to be called before "setWidth" and "setHeight".

Thanks.