aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/data/multilengthStringsWrapped.qml
blob: 21f1b206195d39e83700f03aa1c88ab056907455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

Item {
    width: 300
    height: 200

    Text {
        id: myText
        objectName: "myText"
        width: 60
        height: 36
        font.pixelSize: 15
        font.family: "Helvetica"
        wrapMode: Text.Wrap
    }
}