LanguageService.OnActiveViewChanged(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 the current view has changed to a different view.
public:
virtual void OnActiveViewChanged(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ textView);
public:
virtual void OnActiveViewChanged(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ textView);
virtual void OnActiveViewChanged(Microsoft::VisualStudio::TextManager::Interop::IVsTextView const & textView);
public virtual void OnActiveViewChanged (Microsoft.VisualStudio.TextManager.Interop.IVsTextView textView);
abstract member OnActiveViewChanged : Microsoft.VisualStudio.TextManager.Interop.IVsTextView -> unit
override this.OnActiveViewChanged : Microsoft.VisualStudio.TextManager.Interop.IVsTextView -> unit
Public Overridable Sub OnActiveViewChanged (textView As IVsTextView)
Parameters
- textView
- IVsTextView
[in] The IVsTextView object representing the new current view.
Remarks
This method is typically called when a new view has been added to the code window manager.
The base method internally stores the given view as the currently active view.