LanguagePreferences.OnUnregisterView(IVsTextView) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.