The QDomText class represents text data in the parsed XML document.
.PP
You can split the text in a QDomText object over two QDomText objecs with splitText().
.PP
For further information about the Document Object Model see http://www.w3.org/TR/REC-DOM-Level-1/ and http://www.w3.org/TR/DOM-Level-2-Core/. For a more general introduction of the DOM implementation see the QDomDocument documentation.
.PP
See also XML.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QDomText::QDomText ()"
Constructs an empty QDomText object.
.PP
To construct a QDomText with content, use QDomDocument::createTextNode().
.SH "QDomText::QDomText ( const QDomText & x )"
Constructs a copy of \fIx\fR.
.PP
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().
.SH "QDomText & QDomText::operator= ( const QDomText & x )"
Assigns \fIx\fR to this DOM text.
.PP
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().
.SH "QDomText QDomText::splitText ( int offset )"
Splits this DOM text object into two QDomText objects. This object keeps its first \fIoffset\fR characters and the second (newly created) object is inserted into the document tree after this object with the remaining characters.
.PP
The function returns the newly created object.
.PP
See also QDomNode::normalize().
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qdomtext.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
license file included in the distribution for a complete license
statement.
.SH AUTHOR
Generated automatically from the source code.
.SH BUGS
If you find a bug in Qt, please report it as described in