
How I can get text from tooltip ? Ex(when hover method name is showing void Test()) ?
I need this for implementing Go To Definition functionality.
Thanks.
How I can get text from tooltip ? Ex(when hover method name is showing void Test()) ?
I need this for implementing Go To Definition functionality.
Thanks.
Hello,
I assume you are using our .NET Languages Add-on here? This sort of code should allow you to get the quick info markup programmatically:
var context = language.GetContext(syntaxEditor, offset, false, false);
if (context.ProjectResolver != null)
return context.ProjectResolver.GetQuickInfo(DotNetLanguage.CSharp, context);
Please log in to a validated account to post comments.