The
The properties defined in the
Property | Contains the … |
---|---|
|
Array of attributes of the element |
|
Local name (without the prefix) of the element |
|
Namespace URI of the element |
|
Qualified name (with the prefix) of the element |
|
Text data of a text-only element |
The methods defined in the
Method | Description |
---|---|
|
Creates and adds an attribute |
|
Creates and adds an attribute with a namespace |
|
Adds an attribute object |
|
Adds an attribute object with a namespace |
|
Creates and adds a CDATA node |
|
Adds a CDATA object |
|
Creates and adds a comment |
|
Adds a comment object |
|
Creates and adds an element |
|
Creates and adds an element with a namespace |
|
Adds an element object |
|
Adds an element object with a namespace |
|
Creates and adds a processing instruction |
|
Adds a processing instruction object |
|
Creates and adds a text node |
|
Adds a text object |
|
Fills an array with all descendant elements with the specified namespace URI and local name |
|
Fills an array with all descendant elements with the specified tag name |
|
Fills an array with all descendant elements with the specified tag name |
|
Fills an array with all descendant elements with the specified namespace URI and local name |
|
Returns the attribute with the specified name |
|
Returns the attribute with the specified namespace URI and local name |
|
Returns the first immediate child element with the specified tag name |
|
Returns the first immediate child element with the specified namespace URI and local name |
|
Fills an array with the immediate child elements with the specified tag name |
|
Fills an array with the immediate child elements with the specified namespace URI and local name |
|
Returns the namespace prefix |
|
Returns the parent element of the element |
|
Sets the text content of the element |
|
Returns the text content of the element |
For details, see "
As the
The collection sequence methods provide a performance boost only if a localName or tagName parameter value is explicitly specified in the calling parameters. If you specify "*" in the localName or tagName parameter, the access method reverts to the functionality and performance of the document sequence methods to locate the requested elements.