IDocumentTraversalCreateNodeIterator Method (Node) |
Create a new NodeIterator over the subtree rooted at the
specified node.
Namespace: Aspose.Html.Dom.TraversalAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
SyntaxINodeIterator CreateNodeIterator(
Node root
)
Function CreateNodeIterator (
root As Node
) As INodeIterator
INodeIterator^ CreateNodeIterator(
Node^ root
)
abstract CreateNodeIterator :
root : Node -> INodeIterator
Parameters
- root
- Type: Aspose.Html.DomNode
node which will be iterated together with its children.
The iterator is initially positioned just before this node. The
whatToShow flags and the filter, if any, are not
considered when setting this position. The root must not be
null.
Return Value
Type:
INodeIterator
The newly created NodeIterator.
ExceptionsException | Condition |
---|
DOMException | NOT_SUPPORTED_ERR: Raised if the specified root is
null. |
See Also