IVsProject3.OpenItemWithSpecific 方法

使用特定的编辑器中,打开项目。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function OpenItemWithSpecific ( _
    itemid As UInteger, _
    grfEditorFlags As UInteger, _
    ByRef rguidEditorType As Guid, _
    pszPhysicalView As String, _
    ByRef rguidLogicalView As Guid, _
    punkDocDataExisting As IntPtr, _
    <OutAttribute> ByRef ppWindowFrame As IVsWindowFrame _
) As Integer
int OpenItemWithSpecific(
    uint itemid,
    uint grfEditorFlags,
    ref Guid rguidEditorType,
    string pszPhysicalView,
    ref Guid rguidLogicalView,
    IntPtr punkDocDataExisting,
    out IVsWindowFrame ppWindowFrame
)

参数

  • itemid
    类型:System.UInt32
    [in] 打开项目的项 ID。值从 VSITEMIDDWORD中采用。
  • rguidEditorType
    类型:System.Guid%
    [in] 编辑类型的唯一标识符。
  • pszPhysicalView
    类型:System.String
    [in] 物理视图的名称。
  • rguidLogicalView
    类型:System.Guid%
    [in] 逻辑视图的名称。
  • punkDocDataExisting
    类型:System.IntPtr
    [in] 为 IUnknown 接口的指针在打开的文档。

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

HRESULT IVsProject3::OpenItemWithSpecific(
   [in] VSITEMID itemid,
   [in] VSSPECIFICEDITORFLAGS grfEditorFlags,
   [in] REFGUID rguidEditorType,
   [in] LPCOLESTR pszPhysicalView,
   [in] REFGUID rguidLogicalView,
   [in] IUnknown *punkDocDataExisting,
   [out] IVsWindowFrame **ppWindowFrame
);

此方法用于请求该项目打开项目 (文档) 使用指定编辑器信息,请参见。它是 OpenItem扩展。

它与 OpenSpecificEditor一起实现。

.NET Framework 安全性

请参见

参考

IVsProject3 接口

Microsoft.VisualStudio.Shell.Interop 命名空间