Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
616
Update ToolTipText
posted

Hellow.

I show ultraToolTip on UltraScrollBar. I want change ToolTipText, but tooltiptext not update on UltraToolTip. How can I solve a this problem?

 

Code change text:

 

UltraToolTipInfo info = ultraToolTipManager.GetUltraToolTip(ultraScrollBar);
if (info != null)
           info.ToolTipText = "other text";

 

But I see old text.

 

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    When are you calling this code?

    The tooltip will not update it's text while it is visible on the screen. You would have to hide the tooltip and re-show it.

Children
No Data