
32
roXMLElement
This object is used to contain an XML tree.
The roXMLElement object is created with no parameters:
CreateObject("roXMLElement")
The following examples illustrate how XML elements are parsed in BrightScript:
<tag1>This is example text</tag1>
Name = tag1
Attributes = Invalid
Body = roString containing "This is example text"
<tag2 caveman="barney"/>
Name = tag2
Attributes = roAssociativeArray with one entry, {caveman, barney}
Body = Invalid
If the tag contains other tags, the body will be of the type roXMLList.
Example: To generate XML content, create an roXMLElement and call the SetBody() and SetName() methods to
build it, then call the GenXML() method to generate it.
Commentaires sur ces manuels