IVsTextManagerEvents.OnUnregisterView(IVsTextView) Method

Definition

Fires when a view is unregistered.

public:
 void OnUnregisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ pView);
public:
 void OnUnregisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ pView);
void OnUnregisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView const & pView);
public void OnUnregisterView (Microsoft.VisualStudio.TextManager.Interop.IVsTextView pView);
abstract member OnUnregisterView : Microsoft.VisualStudio.TextManager.Interop.IVsTextView -> unit
Public Sub OnUnregisterView (pView As IVsTextView)

Parameters

pView
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.

Applies to