IVsTextManagerEvents.OnUnregisterView Method
Fires when a view is unregistered.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Sub OnUnregisterView ( _
pView As IVsTextView _
)
void OnUnregisterView(
IVsTextView pView
)
void OnUnregisterView(
[InAttribute] IVsTextView^ pView
)
abstract OnUnregisterView :
pView:IVsTextView -> unit
function OnUnregisterView(
pView : IVsTextView
)
Parameters
pView
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextView[in] Pointer to the IVsTextView interface identifying the view that was unregistered.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextManagerEvents::OnUnregisterView(
[in] IVsTextView *pView
);
Use notification from this method to determine when another client has unregistered a view.
.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.