Close the Super ToolTip

Hi,

Please let me know how to close the supertooltip by coding. super tooltip control provide Hide method but this is not sufficient to me. i want to colse that tool tip not hide.

e.g.
Tooltip.Active = false;
such any property for supertooltip for closing it ?????

thanks in advance


4 Replies

AD Administrator Syncfusion Team March 9, 2009 01:09 PM UTC

Hi Nikhil ,

Thank you for using Syncfusion products.

If you don't want to display superTooltip on the control, you can set empty tooltip text as follows.

[C#]


ToolTipInfo info=new ToolTipInfo();
info.Body.Text="";
this.superToolTip1.SetToolTip(this.button1, info);

Please let me know if this helps you.

Regards,
Jaya




NN Nikhil Nirmal March 9, 2009 02:20 PM UTC


When we hide the super tool tips then it come again & again when cursor get on diagram

Please help me for this.

How to close the super tooltips when curser goes on diagram and no Node found under the mouse



>Hi Nikhil ,

Thank you for using Syncfusion products.

If you don't want to display superTooltip on the control, you can set empty tooltip text as follows.

[C#]


ToolTipInfo info=new ToolTipInfo();
info.Body.Text="";
this.superToolTip1.SetToolTip(this.button1, info);

Please let me know if this helps you.

Regards,
Jaya






Tooltip_c1568f00.zip


NN Nikhil Nirmal March 10, 2009 04:47 AM UTC

I don't want to display superTooltip on the control, So I set empty tooltip text as follows

toolTipInfothroughCode.Body.Text = "";
this.superToolTip1.SetToolTip(this.diagGlobalFlowChart, toolTipInfothroughCode);

But this is Give me one Spot on the Diagram
instead of Tooltip.i thinks that Spot due to tooltips without Body.

Please Help me













AD Administrator Syncfusion Team March 10, 2009 06:46 AM UTC

Hi Nikhil,

Thanks for the update.

Please follow up the forum http://www.syncfusion.com/support/forums/message.aspx?MessageID=80039 regarding this issue.

Please let me know if any concern.

Regards,
Jaya


Loader.
Up arrow icon