We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

TreeViewAdv & Tooltips

I''m building my treeview on the fly and need to be able to assign tooltips on a node level. How would I accomplish that?

1 Reply

AD Administrator Syncfusion Team July 1, 2004 01:17 PM UTC

Hi Lori You can use the TreeNodeAdv''s HelpText property. Here is a code snippet: for (int i=0;i<30;i++) { TreeNodeAdv newNode = new TreeNodeAdv("node"+i.ToString()); newNode.HelpText = newNode.Text; this.treeViewAdv1.Nodes.Add(newNode); } Regards Arun

Loader.
Live Chat Icon For mobile
Up arrow icon