IVsMultiViewDocumentView::ActivateLogicalView Method (Guid)

 

Identifies which view is activated when the editor window is instantiated.

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

int ActivateLogicalView(
	[InAttribute] Guid% rguidLogicalView
)

Parameters

rguidLogicalView
Type: System::Guid

[in] GUID identifying the logical view.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsMultiViewDocumentView::ActivateLogicalView(
   [in] REFGUID rguidLogicalView
);

The value passed into the rguidLogicalView parameter of ActivateLogicalView is the same value passed into the rguidLogicalView of InitializeEditorInstance. Use this value in your editor factory implementation to bring the correct tab (that is, logical view) forward in the view and give it focus.

Return to top
Show: