Nevron .NET Vision
Nevron.UI.WinForm.Controls Namespace / NTreeNodeCollection Class / GetNodesByText Method
The text to search for.
True to recursively iterate through nested nodes, false to examine the current collection only.


In This Topic
    GetNodesByText Method
    In This Topic
    Collects all nodes with the specified text.
    Syntax
    'Declaration
     
    
    Public Function GetNodesByText( _
       ByVal text As System.String, _
       ByVal nested As System.Boolean _
    ) As System.Collections.Generic.List(Of NTreeNode)
    'Usage
     
    
    Dim instance As NTreeNodeCollection
    Dim text As System.String
    Dim nested As System.Boolean
    Dim value As System.Collections.Generic.List(Of NTreeNode)
     
    value = instance.GetNodesByText(text, nested)
    public System.Collections.Generic.List<NTreeNode> GetNodesByText( 
       System.string text,
       System.bool nested
    )

    Parameters

    text
    The text to search for.
    nested
    True to recursively iterate through nested nodes, false to examine the current collection only.
    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