All Node types and Properties as CASE INSENSITIVE.
Node types:
-------------------------------------------------------------
Element example: bold string element: b
Attribute example: attribute: id
Text exmaple: bold string text: bold string
DocType example:
Comment example:
ProcessingInstruction example:
Document all the xml document.
All Nodes Properties
-------------------------------------------------------------
childCount example: xomGet(node,"childCount")
value example: xomGet(node,"value")
baseURI example: xomGet(node,"baseURI")
parent example: xomGet(node,"parent")
document example: xomGet(node,"document")
info example: xomGet(node,"info")
child extra args: int (child position) example: xomGet(node,"child",2)
childs returns array: @nodes example: xomGet(node,"childs")
Element Properties:
-------------------------------------------------------------
name example: xomGet(element,"name")
qualifiedName
namespaceURI
namespacePrefix
attributes
attributeHash
attributeCount
text
body
attribute extra args: 1) int (attribute position) example: xomGet(element,"attribute",1)
2) name example: xomGet(element,"attribute","name")
3) name, namespaceURI example: xomGet(element,"attribute","name","namespaceURI")
attributeValue extra args: 1) name example: xomGet(element,"attributeValue","name")
2) name, namespaceURI example: xomGet(element,"attributeValue","name","namespaceURI")
childElements returns array: @elements
firstChildElement extra args: 1) name example: xomGet(element,"firstChildElement","name")
2) name, namespaceURI example: xomGet(element,"firstChildElement","name","namespaceURI")
Document Properties:
-------------------------------------------------------------
root
rootElement
docType
Attribute Properties:
-------------------------------------------------------------
name
qualifiedName
namespaceURI
namespacePrefix
DocType Properties:
-------------------------------------------------------------
internalDTDSubset
publicID
rootElementName
systemID
ProcessingInstruction Properties:
-------------------------------------------------------------
target