aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlvaluetypes/data/rectf_read.qml
blob: 878868254d7c1172a4f8ed29865f547df499c87e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Test 1.0

MyTypeObject {
    property real r_x: rectf.x
    property real r_y: rectf.y
    property real r_width: rectf.width
    property real r_height: rectf.height
    property real r_left: rectf.left
    property real r_right: rectf.right
    property real r_top: rectf.top
    property real r_bottom: rectf.bottom
    property variant copy: rectf
}