point QML Basic Type

The point type refers to a value with x and y attributes.

To create a point value, specify it as a "x,y" string:




Or use the Qt.point() function:




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.

See also QML Basic Types.