method append(arg0 as xmlstring, arg1 as string)
Appends a string to an XML string.
function getAttribute(arg0 as xmlelement, arg1 as string) as string
Returns the value of an attribute of an XML element as a string or null.
function getElements(arg0 as xmlelement, arg1 as string) as list of xmlelement
Returns a list of XML elements that are children of an XML element.
function getFirstElement(arg0 as xmlelement, arg1 as string) as xmlelement
Returns the first XML element that is a child of an XML element.
function getParentElement(arg0 as xmlelement) as xmlelement
Returns the parent XML element of an XML element.
function getRootElement(arg0 as xmldocument) as xmlelement
Returns the root XML element of an XML document.
function getText(arg0 as xmlelement) as string
Returns the text content of an XML element.
function hasElement(arg0 as xmlelement, arg1 as string) as bool
Returns true if the target XML element contains the specified search XML element.
function open(arg0 as int) as xmldocument
Returns an XML document with the specified storageFileKey.
function openAtVersion(arg0 as int, arg1 as int) as xmldocument
Returns an XML document with the specified storageFileKey and storageVersion.
function xmlStringToText(arg0 as xmlstring) as string
Returns the text content of an XML string.