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

‘선언
Function MapLogicalView ( _
    ByRef rguidEditorType As Guid, _
    ByRef rguidLogicalView As Guid, _
    <OutAttribute> ByRef pbstrPhysicalView As String _
) As Integer
‘사용 방법
Dim instance As IVsUIShellOpenDocument
Dim rguidEditorType As Guid
Dim rguidLogicalView As Guid
Dim pbstrPhysicalView As String
Dim returnValue As Integer

returnValue = instance.MapLogicalView(rguidEditorType, _
    rguidLogicalView, pbstrPhysicalView)
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: System.Guid%
    [in] Unique identifier of the editor type.
  • pbstrPhysicalView
    Type: System.String%
    [out, retval] Pointer to the physical view.

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 vsshell.idl:

HRESULT IVsUIShellOpenDocument::MapLogicalView(
   [in] REFGUID rguidEditorType,
   [in] REFGUID rguidLogicalView,
   [out, retval] BSTR *pbstrPhysicalView
);

.NET Framework Security

See Also

Reference

IVsUIShellOpenDocument Interface

IVsUIShellOpenDocument Members

Microsoft.VisualStudio.Shell.Interop Namespace