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中采用。
- grfEditorFlags
类型:System.UInt32
[in] 值从 __VSSPECIFICEDITORFLAGS 枚举所采用的标志。
- rguidEditorType
类型:System.Guid%
[in] 编辑类型的唯一标识符。
- pszPhysicalView
类型:System.String
[in] 物理视图的名称。
- rguidLogicalView
类型:System.Guid%
[in] 逻辑视图的名称。
- punkDocDataExisting
类型:System.IntPtr
[in] 为 IUnknown 接口的指针在打开的文档。
- ppWindowFrame
类型:Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame%
[out] 为 IVsWindowFrame2 接口的指针。
返回值
类型: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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。