Inheritance diagram for DzDomCharacterData:

Properties | |
| String | data |
| Number | length |
| void | appendData (String arg) |
| void | deleteData (Number offset, Number count) |
| void | insertData (Number offset, String arg) |
| void | replaceData (Number offset, Number count, String arg) |
| String | substringData (Number offset, Number count) |
Constructors | |
| DzDomCharacterData () | |
Represents a character data node in a DOM document.
| DzDomCharacterData::DzDomCharacterData | ( | ) |
Default constructor. Typically, you will not construct these directly, but will call DzDomDocument::createText() or DzDomDocument::createCDATASection() to create a new character data node as a member of a document.
| void DzDomCharacterData::appendData | ( | String | arg | ) |
Appends arg to the end of the current text for this node.
Removes count characters from this node's data beginning at offset.
Inserts arg into the current text for this node at position offset.
Replaces count characters in this node's data beginning at offset with the string arg
offset, and count characters long
| QString DzDomCharacterData::data |
The text data for the node
[Read Only] The length of the data