aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextedit/data/hAlignVisual.qml
blob: 1280a655f01216fc7a2ecbf5217960ab10652049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Rectangle {
    width: 200
    height: 100

    Text {
        objectName: "textItem"
        text: "AA\nBBBBBBB\nCCCCCCCCCCCCCCCC"
        anchors.centerIn: parent
        horizontalAlignment: Text.AlignLeft
        font.pointSize: 12
        font.family: "Times New Roman"
    }
}