Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
445
find in ultratee
posted

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

 

  • 190
    Verified Answer
    posted

    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.