Interface ITraversal
Namespace: Aspose.Html.Dom.Traversal
Assembly: Aspose.HTML.dll (25.4.0)
Iterators are used to step through a set of nodes, e.g. the set of nodes in a NodeList, the document subtree governed by a particular Node, the results of a query, or any other set of nodes. The set of nodes to be iterated is determined by the implementation of the NodeIterator. DOM Level 2 specifies a single NodeIterator implementation for document-order traversal of a document subtree. Instances of these iterators are created by calling DocumentTraversal .createNodeIterator().
See also the Document object Model (DOM) Level 2 Traversal and Range Specification. @since DOM Level 2
[DOMObject]
[ComVisible(true)]
[DOMNoInterfaceObject]
public interface ITraversal : IDisposable
Implements
Properties
Filter
The NodeFilter used to screen nodes.
[DOMName("filter")]
INodeFilter Filter { get; }
Property Value
Root
The root node of the NodeIterator, as specified when it was created.
[DOMName("root")]
Node Root { get; }
Property Value
WhatToShow
This attribute determines which node types are presented via the iterator. The available set of constants is defined in the NodeFilter interface. Nodes not accepted by whatToShow will be skipped, but their children may still be considered. Note that this skip takes precedence over the filter, if any.
[DOMName("whatToShow")]
long WhatToShow { get; }