IVsCodeWindowManager::OnNewView Method (IVsTextView^)

 

Called by the core editor to notify a language that a new view was created.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

int OnNewView(
	IVsTextView^ pView
)

Parameters

pView
Type: Microsoft.VisualStudio.TextManager.Interop::IVsTextView^

[in] The IVsTextView object for the new view.

Return Value

Type: System::Int32

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

Return to top
Show: