XMLAttributes Object
See Also Example Properties Methods Events
A collection class for XMLAttribute objects.
Class Diagram

Remarks
This object is a stripped down collection class that provides minimum functionality for retrieving items from the collection.
The number of items in the collection is held in the Count property,
specific members can be returned from the collection using the Item method,
while the entire collection can be iterated using the For Each...Next structure.
Methods are also implemented to extract attributes which have a certain name, these are the GetAttributeByName and AttributeExists methods.
Background
An XML Tag can have a number of attributes. These attributes consist of a name and a value. For example:
<ExampleTag ExampleName1="Example Value" ExampleName2="Another Example Value" />
|