LanguagePreferences.OnUnregisterView(IVsTextView) Method

Definition

Called when a view is closed.

public:
 virtual int OnUnregisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ view);
public:
 virtual int OnUnregisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ view);
 virtual int OnUnregisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView const & view);
public virtual int OnUnregisterView (Microsoft.VisualStudio.TextManager.Interop.IVsTextView view);
abstract member OnUnregisterView : Microsoft.VisualStudio.TextManager.Interop.IVsTextView -> int
override this.OnUnregisterView : Microsoft.VisualStudio.TextManager.Interop.IVsTextView -> int
Public Overridable Function OnUnregisterView (view As IVsTextView) As Integer

Parameters

view
IVsTextView

[in] An IVsTextView interface representing the view that has been closed.

Returns

Implements

Remarks

This method is called when a view has been closed. A language service typically does not need to implement this method.

This method is an implementation of Microsoft.VisualStudio.TextManager.Interop.IVsTextManagerEvents2.OnUnregisterView.

The base method does nothing.

Applies to