XMLElement
Class XMLElement
| Method Prototype | Description
|
| AttributeCount() As Integer | Returns the number of XMLAttribute objects associated with the element.
|
| Function GetAttribute( name As String ) As String | XMLElement attributes are name-value pairs. This function returns the string value corresponding to the passed atribute name.
|
| Function GetAttributeNode( index As Integer ) As XMLAttribute | Returns an attribute for a zero-based index value.
|
| Function GetAttributeNode( name As String ) As XMLAttribute | Returns an attribute corresponding to the passed name.
|
| Sub RemoveAttributeNode( attributeNode As XMLAttribute ) | Remove the passed attribute from the element.
|
| Function RemoveAttributeNode( attributeNode As XMLAttribute ) As XMLAttribute | Remove the passed attribute from the element and return a reference to the removed attribute.
|
| Sub SetAttribute( name As String, value As String ) | Set an xml attribute name-value pair for the element.
|
| Sub SetAttributeNode( attributeNode As XMLAttribute ) | Adds an attribute to the element.
|
| Function SetAttributeNode( attributeNode As XMLAttribute ) As XMLAttribute | Adds an attribute to the element.
|
XMLElement is a subclass of
XMLNode.