Obsolete Members for Canvas

The following members of QML type Canvas 已过时。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。

特性

特性文档编制

canvasWindow : rect

This property is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

Holds the current canvas visible window.

By default the canvasWindow size is the same as the Canvas item size with the top-left point as (0, 0).

canvasSize is different to the Canvas item size, the Canvas item can display different visible areas by changing the canvas windowSize and/or position.

This feature is incomplete. For details, see QTBUG-33129

另请参阅 canvasSize and tileSize .

tileSize : size

This property is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

Holds the canvas rendering tile size.

The Canvas item enters tiled mode by setting canvasSize , tileSize and the canvasWindow . This can improve rendering performance by rendering and caching tiles instead of rendering the whole canvas every time.

Memory will be consumed only by those tiles within the current visible region.

By default the tileSize is the same as the canvasSize .

This feature is incomplete. For details, see QTBUG-33129.

另请参阅 canvasSize and canvasWindow .