IVsUIShellOpenDocument.MapLogicalView Method
Maps a physical view to a logical view.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function MapLogicalView ( _
ByRef rguidEditorType As Guid, _
ByRef rguidLogicalView As Guid, _
<OutAttribute> ByRef pbstrPhysicalView As String _
) As Integer
int MapLogicalView(
ref Guid rguidEditorType,
ref Guid rguidLogicalView,
out string pbstrPhysicalView
)
int MapLogicalView(
[InAttribute] Guid% rguidEditorType,
[InAttribute] Guid% rguidLogicalView,
[OutAttribute] String^% pbstrPhysicalView
)
abstract MapLogicalView :
rguidEditorType:Guid byref *
rguidLogicalView:Guid byref *
pbstrPhysicalView:string byref -> int
function MapLogicalView(
rguidEditorType : Guid,
rguidLogicalView : Guid,
pbstrPhysicalView : String
) : int
Parameters
rguidEditorType
Type: Guid%[in] Unique identifier of the editor type.
rguidLogicalView
Type: Guid%[in] GUID of the logical view. For a list of logical view GUID, see Logical View and Physical View.
pbstrPhysicalView
Type: String%[out, retval] Pointer to the physical view.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsUIShellOpenDocument::MapLogicalView(
[in] REFGUID rguidEditorType,
[in] REFGUID rguidLogicalView,
[out, retval] BSTR *pbstrPhysicalView
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.