xxNodeSet
The xxNodeSet object provides access to the Document Object Model (DOM) Node List implementation of a selected Transformation Service.
Constructor
Use the xxDomDocument SelectNode or GetElementsByTagName methods to obtain a xxNodeSet object.
Properties
Property | Description |
---|---|
Count | Integer, read-only, indicates the number of items in this collection. |
Index | Integer, read-only, contains the current position for Next and Prev iteration properties. |
First | xxNode, read-only, contains the first node in this collection. |
Last | xxNode, read-only, contains the last node in this collection. |
Next | xxNode, read-only, contains the iterator's next node in this collection |
Prev | xxNode, read-only, contains the iterator's previous node in this collection |
Methods
Method | Description |
---|---|
GetItem | Allows random access of items in the collection. |
Reset | Resets the iterator. |
Comments
See also xxDomDocument object.
Obtain more information on the concept of XML DOM on www.w3.org/DOM.