Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativetext / data / rotated.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width : 200
5     height : 100
6
7     Text {
8         objectName: "text"
9         x: 20
10         y: 20
11         height : 20
12         width : 80
13         text : "Something"
14         rotation : 30
15         transformOrigin : Item.TopLeft
16     }
17 }
18