IVsCodeWindowManager::OnNewView Method (IVsTextView^)
Visual Studio 2015
Called by the core editor to notify a language that a new view was created.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Parameters
- pView
-
Type:
Microsoft.VisualStudio.TextManager.Interop::IVsTextView^
[in] The IVsTextView object for the new view.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From textmgr.idl:
HRESULT IVsCodeWindowManager::OnNewView(
[in] IVsTextView *pView
);
Use this notification to add a filter to the view when it is created. For more information, see Intercepting Language Service Commands.
Show: