blob: 48e7c7b6d06f739090f68b37b3a9704f4ea0adb6 [file] [log] [blame]
import QtQuick 2.0
Item {
width: 300
height: 200
Rectangle {
anchors.fill: myText
border.width: 1
}
Text {
id: myText
objectName: "myText"
width: 250
height: 35
minimumPointSize: 8
minimumPixelSize: 8
font.pixelSize: 25
font.family: "Helvetica"
}
}