aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetext/data/rotated.qml
blob: 1e893b93fc6dea6dac71689c2c3c40aa18842035 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 1.0

Rectangle {
    width : 200
    height : 100

    Text {
        objectName: "text"
        x: 20
        y: 20
        height : 20
        width : 80
        text : "Something"
        rotation : 30
        transformOrigin : Item.TopLeft
    }
}