Hi,
is there any function equivalent to
treeView.Nodes.Find in ultratree.
Also is there any property equivalent to TreeNode.Name there is only Text property in Infragistics.Win.UltraWinTree.UltraTreeNode
Thanks
Dibya, It sounds like you are after:
UltraTreeNode nodeToFind = ultraTree.GetNodeByKey(nodeKey)
Where nodeKey will be the string key of the node you are looking for.
and:
The ultraTreeNode class has a .Key property which is the unique identifier of the node within the node hierarchy. This is the closest thing to a name property.