Attributes Object
The Attributes object stores a collection of attr objects, as an element object can have more than one attribute associated with it.
Properties
count
Integer value, the number of Attr objects there are in the collection.
item(index as Integer)
Returns a Attr object depending on the given index.
Methods
add(name as String, value as String)
Given a name and a value for an Attr object, it creates an Attr and adds it to the collection.
remove(index as Integer)
It removes an Attr given an index for the Attr to be removed from the collection.
Associated objects
Attr (Child)
element (Parent)