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

Rectangle {
    width : 200
    height : 100

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