Find() and FindAll() methods of FlyTreeView and FlyTreeNodeCollection
use the samex syntax as generic List.Find() and List.FindAll() methods.
Anyway here're two examples.
This one returns all nodes having Text equal to \"xxx\":
FlyTreeNodeCollection foundNodes = flytreeview.FindAll(delegate(FlyTreeNode match)
{
return match.Text == \"xxx\";
});
The second example returns the first node having personName equal to John.
FlyTreeNode node = flytreeview.Find(delegate(FlyTreeNode match)
{
return match.Attributes[\"personName\"] == \"John\";
});
Hope this is what you need.