XMLElement
Class XMLElement

Method PrototypeDescription
AttributeCount() As IntegerReturns the number of XMLAttribute objects associated with the element.
Function GetAttribute( name As String ) As StringXMLElement attributes are name-value pairs. This function returns the string value corresponding to the passed atribute name.
Function GetAttributeNode( index As Integer ) As XMLAttributeReturns an attribute for a zero-based index value.
Function GetAttributeNode( name As String ) As XMLAttributeReturns 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 XMLAttributeRemove 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 XMLAttributeAdds an attribute to the element.


XMLElement is a subclass of XMLNode.