Xmlelement

The object manages an XML element associated with an xmldocument.

*list* = *xmlelement*.getattributes()

Retrieves XML attributes.

*xmlelement*.appendattribute(*xmlattribute*)

Adds an XML attribute.

*xmlelement*.removeattribute(*xmlattribute*)

Removes an XML attribute.

*xmlelement*.appendchild(*xmlelement*)

Adds an XML element.

*xmlelement*.setvalue(*value*)

Sets the value of the XML element.

*value* = *xmlelement*.getvalue()

Retrieves the value of the XML element.

*xmlelement* = *xmlelement*.getelementbyname(*elementname*)

Returns the first XML element by name.

*xmlelement* = *xmlelement*.getelementsbyname(*elementname*)

Returns a list of XML elements by name.