IVsCodeWindowManager.OnNewView Method

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)

Syntax

'Déclaration
Function OnNewView ( _
    pView As IVsTextView _
) As Integer
'Utilisation
Dim instance As IVsCodeWindowManager
Dim pView As IVsTextView
Dim returnValue As Integer

returnValue = instance.OnNewView(pView)
int OnNewView(
    IVsTextView pView
)
int OnNewView(
    [InAttribute] IVsTextView^ pView
)
abstract OnNewView : 
        pView:IVsTextView -> int 
function OnNewView(
    pView : IVsTextView
) : int

Parameters

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

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.

.NET Framework Security

See Also

Reference

IVsCodeWindowManager Interface

IVsCodeWindowManager Members

Microsoft.VisualStudio.TextManager.Interop Namespace