IVsTextMarkerClient::GetTipText Method (IVsTextMarker^, array<String^>^)

 

Returns the tip text for the text marker when the mouse hovers over the marker.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

int GetTipText(
	IVsTextMarker^ pMarker,
	array<String^>^ pbstrText
)

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::Int32

If 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
);
Return to top
Show: