AsmHighlighter.AsmHighlighterLanguageService.GetDataTip C# (CSharp) Method

GetDataTip() public method

Displays a tip over a span of text when the mouse hovers over this location.
public GetDataTip ( IVsTextLayer pTextLayer, TextSpan ptsSel, TextSpan ptsTip, string &pbstrText ) : int
pTextLayer IVsTextLayer [in] An object representing the text file.
ptsSel TextSpan [in] Span of text relevant to the specified text layer. For more information, see .
ptsTip TextSpan [out] Returns a span of text to center the tip over. For more information, see .
pbstrText string [out] Returns the text of the tip to display.
return int
        public int GetDataTip(IVsTextLayer pTextLayer, TextSpan[] ptsSel, TextSpan[] ptsTip, out string pbstrText)
        {
            pbstrText = "";
            return VSConstants.E_NOTIMPL;
        }