//import QtQuick 1.1 //for Qt 4.8.4 import QtQuick 2.0 Rectangle { width: 360 height: 360 TextEdit { id: myText anchors.fill: parent clip: true wrapMode: Text.WordWrap readOnly: true textFormat: Text.RichText z: 5 text: qsTr("test ") Component.onCompleted: console.log(myText.text) } }