Nevron .NET Vision
Nevron.Dom Namespace / NNodeTree Class / BranchDescendants Method
node
filter
depth in which to explore the branch subtree, or -1 to explore the whole tree


In This Topic
    BranchDescendants Method
    In This Topic
    Returns the branch descendants, which satisfy the specified filter
    Syntax
    'Declaration
     
    
    Public Shared Function BranchDescendants( _
       ByVal node As INNode, _
       ByVal filter As INFilter, _
       ByVal depth As System.Integer _
    ) As NNodeList
    'Usage
     
    
    Dim node As INNode
    Dim filter As INFilter
    Dim depth As System.Integer
    Dim value As NNodeList
     
    value = NNodeTree.BranchDescendants(node, filter, depth)
    public static NNodeList BranchDescendants( 
       INNode node,
       INFilter filter,
       System.int depth
    )

    Parameters

    node
    node
    filter
    filter
    depth
    depth in which to explore the branch subtree, or -1 to explore the whole tree

    Return Value

    descendants, which satisfy the filter and depth parameters, or null if the node is not a branch
    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