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
244
UltraWinToolTip
posted

We replaced our standard .NET tooltips with UltraWinToolTips. RFT recognizes the .NET tooltips for objects. Will the TestAdvantage proxy recognize the UltraWinToolTip? I am unable to see the tooltip property now so just checking if there's a way to see it. I may very well be doing something wrong.

Parents
  • 244
    posted

    I don't see how it is possible to get this value. There is no property on the objects for the UltraToolTip. You must use the GetUltraToolTip method on the UltraToolTipManager to get the ToolTipInfo from which to get the ToolTipText... which is not possible from within RFT. In code for a winform I must do this:

    Dim toolTipInfo As UltraToolTipInfo = Me.UltraToolTipManager1.GetUltraToolTip(Me.TextBox1)
    Dim toolTipText As String = toolTipInfo.ToolTipText()

Reply Children
No Data