Hi
In winforms UtraGrid is there any way to increase the display time for tooltips. Currently on mouse over the tooltip text only shows up for 5 secs and disappears. I would like the tooltips to be displayed as long as the mouse over the particular column header where the tooltips are set.
Please suggest
Thanks
kavitha
Hi again,
Have you been able to resolve your issue ? Did you test the suggestion that I send you. Please keep me in touch.
Regards
I suggest you to use component "UltraToolTipManager" from your ToolBox, but also is possible to do this with the code below:
UltraToolTipInfo MyToolTipInfo = new UltraToolTipInfo(); MyToolTipInfo.ToolTipText = "Set your cell/column text"; MyToolTipInfo.ToolTipTitle = "If you need set a title";
UltraToolTipManager MyTollTipManager = new UltraToolTipManager(); MyTollTipManager.AutoPopDelay = 10000; MyTollTipManager.InitialDelay = 1000; MyTollTipManager.SetUltraToolTip(ultraGrid1, MyToolTipInfo); MyTollTipManager.ShowToolTip(ultraGrid1);
Georgi
Hi Georgi
Thanks for the reply. I am seeting the tooltips for the column headers as
private
exp_Date) { col.Header.ToolTipText =
{
col.Header.ToolTipText =
, exp_Date);
Can you please let me know how can i use the properties that you mentioned to increase the display time for the tooltips. Can you please send me some sample code for the same
thanks for you help
Hello Kavitha,
Yes, it is possible to increase the display time for tooltips. I suggest you to change the properties of "UltraToolTipManager":
- AutoPopDelay = 10000 - this will increase the time showing the tooltip
- InitialDelay = 1000 - this will increase how fast will apeare the tooltip.
Please keep me in touch and if you have any questions, do not hesitate to ask me.