IVsTextMarkerClient::GetTipText Method (IVsTextMarker^, array<String^>^)
Visual Studio 2015
Returns the tip text for the text marker when the mouse hovers over the marker.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Parameters
- pMarker
-
Type:
Microsoft.VisualStudio.TextManager.Interop::IVsTextMarker^
[in] Pointer to the IVsTextMarker interface for the marker.
- pbstrText
-
Type:
array<System::String^>^
[out] Tip text associated with the marker.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From textmgr.idl:
HRESULT IVsTextMarkerClient::GetTipText(
[in] IVsTextMarker* pMarker,
[out, optional] BSTR *pbstrText
);
Show: