QDomCharacterData Class

The QDomCharacterData class represents a generic string in the DOM. More...

Header: #include <QDomCharacterData>
qmake: QT += xml
Inherits: QDomNode
Inherited By:

QDomComment and QDomText

Note: All functions in this class are reentrant.

Detailed Description

Character data as used in XML specifies a generic data string. More specialized versions of this class are QDomText, QDomComment and QDomCDATASection.

The data string is set with setData() and retrieved with data(). You can retrieve a portion of the data string using substringData(). Extra data can be appended with appendData(), or inserted with insertData(). Portions of the data string can be deleted with deleteData() or replaced with replaceData(). The length of the data string is returned by length().

The node type of the node containing this character data is returned by nodeType().

See also QDomText, QDomComment, and QDomCDATASection.