How to show or hide Tooltip for TreeNodeAdv in WinForms TreeViewAdv?
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