IVsTextManagerEvents.OnRegisterView(IVsTextView) Method

Definition

Fires when a view is registered.

public:
 void OnRegisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ pView);
public:
 void OnRegisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ pView);
void OnRegisterView(Microsoft::VisualStudio::TextManager::Interop::IVsTextView const & pView);
public void OnRegisterView (Microsoft.VisualStudio.TextManager.Interop.IVsTextView pView);
abstract member OnRegisterView : Microsoft.VisualStudio.TextManager.Interop.IVsTextView -> unit
Public Sub OnRegisterView (pView As IVsTextView)

Parameters

pView
IVsTextView

[in] Pointer to the IVsTextView interface identifying the view that was registered.

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsTextManagerEvents::OnRegisterView(  
   [in] IVsTextView *pView  
);  

Use notification from this method to determine when another client has registered a view.

Applies to