继承者: QDomCDATASection
PySide.QtXml.QDomText class represents text data in the parsed XML document.
You can split the text in a PySide.QtXml.QDomText object over two PySide.QtXml.QDomText objecs with PySide.QtXml.QDomText.splitText() .
For further information about the Document Object Model see Level 1 and Level 2 Core. For a more general introduction of the DOM implementation see the PySide.QtXml.QDomDocument 文档编制。
| 参数: | x – PySide.QtXml.QDomText |
|---|
构造空 PySide.QtXml.QDomText 对象。
为构建 PySide.QtXml.QDomText with content, use QDomDocument.createTextNode() .
构造副本为 x .
拷贝数据是共享的 (浅拷贝):修改一个节点也将改变另一节点。若想要制作深度副本,使用 PySide.QtXml.QDomNode.cloneNode() .
| 参数: | offset – PySide.QtCore.int |
|---|---|
| 返回类型: | PySide.QtXml.QDomText |
Splits this DOM text object into two PySide.QtXml.QDomText objects. This object keeps its first offset characters and the second (newly created) object is inserted into the document tree after this object with the remaining characters.
The function returns the newly created object.
另请参阅