| Overload | Description |
|---|---|
| GetSubtreeIterator() | Gets an iterator, which iterates through the node and its descendants in a Depth-First-Pre-Order fashion (visits the parent and then visits the children). Children are enumerated in forward order (from first to last). |
| GetSubtreeIterator(ENTreeTraversalOrder) | Gets an iterator, which iterates through the node and its descendants, in the specified traversal order. Children are enumerated in forward order (from first to last). |
| GetSubtreeIterator(ENTreeTraversalOrder,INFilter<NNode>) | Gets an iterator, which iterates through the node and its descendants, in the specified traversal order. Skips the nodes which do not satisfy the specified filter. Children are enumerated in forward order (from first to last). |