IXMLDOMCDATASection Members

MSXML 5.0 SDK

Microsoft XML Core Services (MSXML) 5.0 for Microsoft Office - DOM Reference

IXMLDOMCDATASection Members

[Visual Basic, Script]

The following tables show the properties, methods, and events.

[C/C++]

The following tables show the properties, methods, and events.

This interface inherits from IXMLDOMText.

Properties

attributes Contains the list of attributes for this node. Read-only.
baseName* Returns the base name for the name qualified with the namespace. Read-only.
childNodes Contains a node list containing the children nodes. Read-only.
data Stores the node data depending on the node type. Read/write.
dataType* Specifies the data type for this node. Read/write.
definition* Returns the definition of the node in the document type definition (DTD) or schema. Read-only.
firstChild Contains the first child of the node. Read-only.
lastChild Returns the last child node. Read-only.
length Specifies the length, in characters, of the data. Read-only.
namespaceURI* Returns the Uniform Resource Identifier (URI) for the namespace. Read-only.
nextSibling Contains the next sibling of the node in the parent's child list. Read-only.
nodeName Contains the qualified name of the element, attribute, or entity reference, or a fixed string for other node types. Read-only.
nodeType Specifies the XML Document Object Model (DOM) node type, which determines valid values and whether the node can have child nodes. Read-only.
nodeTypedValue* Contains the node value expressed in its defined data type. Read/write.
nodeTypeString* Returns the node type in string form. Read-only.
nodeValue Contains the text associated with the node. Read/write.
ownerDocument Returns the root of the document that contains this node. Read-only.
parentNode Contains the parent node. Read-only.
parsed* Indicates the parsed status of the node and child nodes.
prefix* Returns the namespace prefix. Read-only.
previousSibling Contains the previous sibling of the node in the parent's child list. Read-only.
specified Indicates whether the node (usually an attribute) is explicitly specified or derived from a default value in the document type definition (DTD) or schema. Read-only.
text* Represents the text content of the node or the concatenated text representing the node and its descendants. Read/write.
xml* Contains the XML representation of the node and all its descendants. Read-only.

* Denotes an extension to the World Wide Web Consortium (W3C) DOM.

Methods

appendChild Appends a new child node as the last child of the node.
appendData Appends the supplied string to the existing string data.
cloneNode Clones a new node.
deleteData Deletes specified data.
hasChildNodes Provides a fast way to determine whether a node has children.
insertBefore Inserts a child node to the left of the specified node or at the end of the list.
insertData Inserts a string at the specified offset.
removeChild Removes the specified child node from the list of children and returns it.
replaceChild Replaces the specified old child node with the supplied new child node.
replaceData Replaces the specified number of characters with the supplied string.
selectNodes* Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes as IXMLDOMNodeList.
selectSingleNode* Applies the specified pattern-matching operation to this node's context and returns the first matching node.
splitText Splits this text node into two text nodes at the specified offset and inserts the new text node into the tree as a sibling that immediately follows this node.
substringData Retrieves a substring of the full string from the specified range.
transformNode* Processes this node and its children using the supplied XSL Transformations (XSLT) style sheet and returns the resulting transformation.
transformNodeToObject Processes this node and its children using the supplied XSL Transformations (XSLT) style sheet and returns the resulting transformation in the supplied object.

* Denotes an extension to the W3C DOM.

Events

None.

To view reference information for Visual Basic, C/C++, or Script only, click the Language Filter button Language Filter in the upper-left corner of the page.

See Also

IXMLDOMCDATASection | IXMLDOMText