Quote Originally Posted by chinmay_s View Post
I have a QML application with several Rectangle Elements put within a Column Element.
Is there any way i can Iterate through these Column using some index .. so that i can change property of a particular rectangle within the the Column .
Yes, you can iterate children, for example:
Qt Code:
  1. for (var i = 0; i < column.children.length; ++i)
  2. column.children[i].width = column.width;
To copy to clipboard, switch view to plain text mode