IVsTextMarkerClientEx.OnHoverOverMarker Method
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
Syntax
'Declaración
Function OnHoverOverMarker ( _
pView As IVsTextView, _
pMarker As IVsTextMarker, _
fShowUI As Integer _
) As Integer
'Uso
Dim instance As IVsTextMarkerClientEx
Dim pView As IVsTextView
Dim pMarker As IVsTextMarker
Dim fShowUI As Integer
Dim returnValue As Integer
returnValue = instance.OnHoverOverMarker(pView, _
pMarker, fShowUI)
int OnHoverOverMarker(
IVsTextView pView,
IVsTextMarker pMarker,
int fShowUI
)
int OnHoverOverMarker(
[InAttribute] IVsTextView^ pView,
[InAttribute] IVsTextMarker^ pMarker,
[InAttribute] int fShowUI
)
abstract OnHoverOverMarker :
pView:IVsTextView *
pMarker:IVsTextMarker *
fShowUI:int -> int
function OnHoverOverMarker(
pView : IVsTextView,
pMarker : IVsTextMarker,
fShowUI : int
) : int
Parameters
- pView
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextView
[in]
- pMarker
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextMarker
[in] Pointer to the IVsTextMarker interface for the marker.
- fShowUI
Type: System.Int32
[in]
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextMarkerClientEx::OnHoverOverMarker(
[in] IVsTextView *pView,
[in] IVsTextMarker* pMarker,
[in] BOOL fShowUI
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.