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.
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.