I want to ovverride the height value for the image defined in a external PictureBox.qml file:

Qt Code:
  1. import QtQuick 2.0
  2.  
  3. FocusScope {
  4. id: container
  5. ...
  6. Column {
  7. id: column
  8. ...
  9. Image {
  10. id: icon
  11. width: parent.width; height: 150
  12. ...
To copy to clipboard, switch view to plain text mode 

this code is called in Main.qml in this way:

Qt Code:
  1. Component {
  2. id: userDelegate
  3.  
  4. PictureBox {
  5. ???
  6. ...
To copy to clipboard, switch view to plain text mode 

how can I override height value for the Image element, without touching PictureBox.qml code?