Microsoft XML SDK 2.6 - XML Reference

IXMLDOMCharacterData Interface

Provides text-manipulation methods that are used by several objects.

This interface inherits from IXMLDOMNode.

Methods

appendData Appends the supplied string to the existing string data.
data Contains this node's data, which depends on the node type.
deleteData Deletes the specified substring within the string data.
insertData Inserts the supplied string at the specified offset.
length Specifies the length, in characters, of the data.
replaceData Replaces the specified number of characters with the supplied string.
substringData Retrieves a substring of the full string from the specified range.

Remarks

The XMLDOMCharacterData object does not directly correspond to any node type. Its methods are reused by the XMLDOMCDATASection, XMLDOMComment, and XMLDOMText objects. These methods handle large amounts of text, including sizes larger than can be manipulated natively using string constructs.

Requirements

Implementation: Msxml.dll

Header and IDL files: Msxml.h, Xmldom.idl

See Also

IXMLDOMElement Interface