a value with x and y attributes. 更多...
The
point
type refers to a value with
x
and
y
属性。
要创建
point
value, specify it as a "x,y" string:
CustomObject { myPointProperty: "0,20" }
或使用 Qt.point () 函数:
CustomObject { myPointProperty: Qt.point(0, 20) }
When integrating with C++, note that any
QPoint
or
QPointF
值
passed into QML from C++
is automatically converted into a
point
value. When a
point
value is passed to C++, it is automatically converted into a
QPointF
值。
Properties of type
point
are
Qt.point(0, 0)
在默认情况下。
另请参阅 QML 值类型 .