QQuickTextDocument Class

QQuickTextDocument class provides access to the QTextDocument of QQuickTextEdit 更多...

头: #include <QQuickTextDocument>
qmake: QT += quick
Since: Qt 5.1
继承: QObject

公共函数

QQuickTextDocument (QQuickItem * parent )
QTextDocument * textDocument () const

额外继承成员

详细描述

QQuickTextDocument class provides access to the QTextDocument of QQuickTextEdit

This class provides access to the QTextDocument of QQuickTextEdit elements. This is provided to allow usage of the 富文本处理 functionalities of Qt. You are not allowed to modify the document, but it can be used to output content, for example with QTextDocumentWriter ), or provide additional formatting, for example with QSyntaxHighlighter .

The class has to be used from C++ directly, using the property of the TextEdit .

警告: QTextDocument provided is used internally by Qt Quick elements to provide text manipulation primitives. You are not allowed to perform any modification of the internal state of the QTextDocument . If you do, the element in question may stop functioning or crash.

成员函数文档编制

QQuickTextDocument:: QQuickTextDocument ( QQuickItem * parent )

构造 QQuickTextDocument 对象采用 parent 作为父级对象。

QTextDocument *QQuickTextDocument:: textDocument () const

返回指针指向 QTextDocument 对象。