E4XXML |
E4XXMLFunctions.appendChild(E4XXML xml) |
function appendChild(xml) appends the given child to the end of this XML object's properties and returns this XML object.
|
E4XXML |
E4XXMLFunctions.insertChildAfter(E4XXML child1,
E4XXML child2) |
function insertChildAfter( child1 , child2) inserts the given child2 after the given child1 in this XML object and returns this XML object.
|
E4XXML |
E4XXMLFunctions.insertChildBefore(E4XXML child1,
E4XXML child2) |
function insertChildBefore( child1 , child2) inserts the given child2 before the given child1 in this XML object and returns this XML object.
|
E4XXML |
E4XXMLFunctions.normalize() |
function normalize() puts all text nodes in this and all descendant XML objects into a normal form by merging adjacent text nodes and eliminating empty text nodes.
|
E4XXML |
E4XXMLFunctions.parent() |
function parent() returns the parent of this XML object.
|
E4XXML |
E4XXMLListFunctions.parent() |
function parent() If all items in this XMLList object have the same parent, it is returned.
|
E4XXML |
E4XXMLFunctions.prependChild(E4XXML value) |
function prependChild(value) adds a new child to an element, prior to all other children.
|
E4XXML |
E4XXMLFunctions.removeNamespace(E4XNamespace namespace) |
function removeNamespace(namespace) removes a namespace from the in-scope namespaces of the element.
|
E4XXML |
E4XXMLFunctions.replace(JSNumber propertyName,
JSObject value) |
function replace(propertyName, value) replaces the XML properties of this XML object specified by propertyName with value and returns this XML object.
|
E4XXML |
E4XXMLFunctions.replace(JSString propertyName,
JSObject value) |
function replace(propertyName, value) replaces the XML properties of this XML object specified by propertyName with value and returns this XML object.
|
E4XXML |
E4XXMLFunctions.setChildren(E4XXML value) |
function setChildren(value) replaces the XML properties of this XML object with a new set of XML properties from value.
|
E4XXML |
E4XXMLFunctions.setChildren(E4XXMLList value) |
function setChildren(value) replaces the XML properties of this XML object with a new set of XML properties from value.
|