point QML Value Type
a value with x and y attributes. More...
Detailed Description
The point
type refers to a value with x
and y
attributes.
To create a point
value, specify it as a "x,y" string:
CustomObject { myPointProperty: "0,20" }
Or use the Qt.point() function:
CustomObject { myPointProperty: Qt.point(0, 20) }
When integrating with C++, note that any QPoint or QPointF value 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 value.
Properties of type point
are Qt.point(0, 0)
by default.
See also QML Value Types.
© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.