IVsMultiViewDocumentView::ActivateLogicalView Method (Guid)
Visual Studio 2015
Identifies which view is activated when the editor window is instantiated.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- rguidLogicalView
-
Type:
System::Guid
[in] GUID identifying the logical view.
Return Value
Type: System::Int32If 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.
Show: