I searched without succes a method to get from my C# addin visual studio extension what displayed in the Quick Info when the mouse is moved over some code element.
I hope that there's an elegant way to do it.
Thanks.
I searched without succes a method to get from my C# addin visual studio extension what displayed in the Quick Info when the mouse is moved over some code element.
I hope that there's an elegant way to do it.
Thanks.
The Quickview shows the methods and properties that exists and are accessible on the class so one solution would be to use reflection to get this information.
//Gets the methods of the Class MyClass MethodInfo[] methodInfos = typeof(MyClass).GetMethods(BindingFlags.Public | BindingFlags.Static);
I do not have a code example, but found the following documentation for the ViewFilter.HandleQuickInfo method which sounds like the steps you need to do.
Source: ViewFilter.HandleQuickInfo
Edit:
You can retrieve the current IVsTextView using IVsTextManager.
However, I am stuck there, and unable to do anything useful with IVsTextView.UpdateTipWindow, it never calls anything on my passed dummy object, so I presume it requires an already visible IVsTipWindow from a language service.