Nevron .NET Vision
Nevron.Dom Namespace / TreeTraversalOrder Enumeration


In This Topic
    TreeTraversalOrder Enumeration
    In This Topic
    Enumerates the order in which trees can be traversed
    Syntax
    'Declaration
     
    
    Public Enum TreeTraversalOrder 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As TreeTraversalOrder
    public enum TreeTraversalOrder : System.Enum 
    Members
    MemberDescription
    BreadthFirstBreadth-first traversal order - visits the nodes by levels
    DepthFirstPostOrderDepth-first Post-order traversal order - visits the children and then visits the parent
    DepthFirstPreOrderDepth-first Pre-order traversal order - visits the parent and then visits the children
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Nevron.Dom.TreeTraversalOrder

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also