XMLDOMNode Object
See Also Example Properties Methods Events
Models an XML Document Object Model Node.
Class Diagram

Remarks
The XMLDOMNode contains information about an XML node and the sub-nodes it contains.
All nodes have a Position in bytes into the file,
all nodes are at a Level in the tree,
all nodes have a Value - whether it be their name or some data - and
all nodes are one of a number of types.
If the node is a tag it may have attributes.
The XMLDOMNode object also contains collection class functionality to access sub-nodes of the node.
The number of items in the collection of sub-nodes is held in the Count property,
specific sub-nodes can be returned from the collection using the Item method,
while the entire collection of sub-nodes can be iterated using the For Each...Next structure.
Methods are also implemented to extract nodes which are tags of a certain name, these are the GetTagByName and TagExists methods.
|