PySide6.QtXml.QDomText¶
- class QDomText¶
- The - QDomTextclass represents text data in the parsed XML document.- Details- You can split the text in a - QDomTextobject over two- QDomTextobjects 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 - QDomDocumentdocumentation.- Inherited by: - QDomCDATASection- Synopsis¶- Methods¶- def - __init__()
- def - splitText()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - __init__()¶
 - Constructs an empty - QDomTextobject.- To construct a - QDomTextwith content, use- createTextNode().- __init__(text)
- Parameters:
- text – - QDomText
 
 - Constructs a copy of - text.- The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use - cloneNode().- Splits this DOM text object into two - QDomTextobjects. This object keeps its first- offsetcharacters 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