QDomText

The QDomText class represents text data in the parsed XML document. More

Inheritance diagram of PySide2.QtXml.QDomText

Inherited by: QDomCDATASection

Synopsis

Functions

Detailed Description

You can split the text in a QDomText object over two QDomText objects with 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 QDomDocument documentation.

class PySide2.QtXml.QDomText

PySide2.QtXml.QDomText(x)

param x:

PySide2.QtXml.QDomText

Constructs an empty QDomText object.

To construct a QDomText with content, use createTextNode() .

PySide2.QtXml.QDomText.splitText(offset)
Parameters:

offset – int

Return type:

PySide2.QtXml.QDomText

Splits this DOM text object into two 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.

See also

normalize()