Articles in this section
Category / Section

How to show or hide Tooltip for TreeNodeAdv in WinForms TreeViewAdv?

1 min read

Show or hide tooltip for TreeNodeAdv

In TreeNodeAdv, you can hide the Tooltip by disabling the ShowToolTip property in TreeViewAdv. The following code example illustrates the same.

C# 


this.treeViewAdv1.DelayToolTip = false;
//To show tooltip in TreeNodeAdv
this.treeViewAdv1.ShowToolTip = true;
//To hide the tooltip
this.treeViewAdv1.ShowToolTip = false;

VB

Me.treeViewAdv1.DelayToolTip = False
'To show tooltip
Me.treeViewAdv1.ShowToolTip = True
'To hide the tooltip
Me.treeViewAdv1.ShowToolTip = False

 

Note:

DelayToolTip property should be disabled before using the ShowToolTip property.

Sample: http://www.syncfusion.com/downloads/support/directtrac/general/TreeViewAdv_HideToolTip1217646984.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied