8 MySequenceConversionObject {
11 intListProperty: [ 1, 2, 3, 6, 7 ]
14 MySequenceConversionObject {
17 intListProperty: msco.intListProperty
20 property variant boundSequence: msco.intListProperty
21 property int boundElement: msco.intListProperty[3]
22 property variant boundSequenceTwo: mscoTwo.intListProperty
24 Component.onCompleted: {
25 msco.intListProperty[3] = 12;
26 mscoTwo.intListProperty[4] = 14;