blob: 31ee01db9961f083b819d6d72a8385cc8548c9b1 [file] [log] [blame]
import QtQuick 2.0
Rectangle { width: 300; height: 300; color: "white"
property string contextualProperty: "Hello"
TextInput {
text: "Hello world!"
id: textInputObject;
objectName: "textInputObject"
width: 300; height: 300
wrapMode: TextInput.Wrap
cursorDelegate: Cursor {
id:cursorInstance;
objectName: "cursorInstance";
localProperty: contextualProperty;
}
}
}