Find rad tree view node by node value

Namespace: MonoSoftware.MonoX.Extensions
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static RadTreeNode FindRadTreeNode(
	this RadTreeView treeView,
	string nodeValue
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function FindRadTreeNode ( 
	treeView As RadTreeView,
	nodeValue As String
) As RadTreeNode
Visual C++
public:
[ExtensionAttribute]
static RadTreeNode^ FindRadTreeNode(
	RadTreeView^ treeView, 
	String^ nodeValue
)
F#
static member FindRadTreeNode : 
        treeView : RadTreeView * 
        nodeValue : string -> RadTreeNode 

Parameters

treeView
Type: RadTreeView
Tree view to search
nodeValue
Type: System..::..String
Node value to search for

Return Value

Type: RadTreeNode
If found RadTreeNode, else null

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type RadTreeView. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also