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
760
Selected Cell In The UltraTree
posted

Hello,

 

Im looking for an example of how to get the selected cell from a node that was clicked in the UltraTree. Im using the Outlook view style so my tree has multiple columns.

 

I have data on the cell Tag that I would like to retrieve when I click on that cell. I havent found any examples yet on how to do this so if anyone could point me in the right direction that would be much appreciated. Thanks!

Parents
  • 71886
    Offline posted

    Hello RichSee,

    You could try the following code as a possible approach to get your data:

            private void tvICD10_AfterCellActivate(object sender, EventArgs e)
            {
                ultraTree1.ActiveCell.Tag;
            }
    

     Please do not hesitate to contact us if you need any additional assistance.

Reply Children
No Data