The Node interface forms the primary datatype for all other DOM
objects. Every other interface is derived from this interface, inheriting
its functionality. For more information, refer to DOM2-Core page 34.
-
ixmlNode_getNodeName - Returns the name of the Node, depending on what type of Node it is, in a read-only string.
-
ixmlNode_getNodeValue - Returns the value of the Node as a string.
-
ixmlNode_setNodeValue - Assigns a new value to a Node.
-
ixmlNode_getNodeType - Retrieves the type of a Node.
-
ixmlNode_getParentNode - Retrieves the parent Node for a Node.
-
ixmlNode_getChildNodes - Retrieves the list of children of a Node in a NodeList structure.
-
ixmlNode_getFirstChild - Retrieves the first child Node of a Node.
-
ixmlNode_getLastChild - Retrieves the last child Node of a Node.
-
ixmlNode_getPreviousSibling - Retrieves the sibling Node immediately preceding this Node.
-
ixmlNode_getNextSibling - Retrieves the sibling Node immediately following this Node.
-
ixmlNode_getAttributes - Retrieves the attributes of a Node, if it is an Element node, in a NamedNodeMap structure.
-
ixmlNode_getOwnerDocument - Retrieves the document object associated with this Node.
-
ixmlNode_getNamespaceURI - Retrieves the namespace URI for a Node as a DOMString.
-
ixmlNode_getPrefix - Retrieves the namespace prefix, if present.
-
ixmlNode_getLocalName - Retrieves the local name of a Node, if present.
-
ixmlNode_insertBefore - Inserts a new child Node before the existing child Node.
-
ixmlNode_replaceChild - Replaces an existing child Node with a new child Node in the list of children of a Node.
-
ixmlNode_removeChild - Removes a child from the list of children of a Node.
-
ixmlNode_appendChild - Appends a child Node to the list of children of a Node.
-
ixmlNode_hasChildNodes - Queries whether or not a Node has children.
-
ixmlNode_cloneNode - Clones a Node.
-
ixmlNode_hasAttributes - Queries whether this Node has attributes.
-
ixmlNode_free - Frees a Node and all Nodes in its subtree.
Alphabetic index
This page was generated with the help of DOC++.