IVsTextMarkerClientEx::OnHoverOverMarker Method (IVsTextView^, IVsTextMarker^, Int32)

 

Called when user hovers the mouse pointer over the marker.

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

int OnHoverOverMarker(
	IVsTextView^ pView,
	IVsTextMarker^ pMarker,
	int fShowUI
)

Parameters

pView
Type: Microsoft.VisualStudio.TextManager.Interop::IVsTextView^

[in] The text view.

pMarker
Type: Microsoft.VisualStudio.TextManager.Interop::IVsTextMarker^

[in] Pointer to the IVsTextMarker interface for the marker.

fShowUI
Type: System::Int32

[in] Flag indicating visibility of UI, true to show the UI, false to hide it.

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 IVsTextMarkerClientEx::OnHoverOverMarker(
   [in] IVsTextView *pView,
   [in] IVsTextMarker* pMarker,
   [in] BOOL fShowUI
);
Return to top
Show: