IVsProject3.AddItemWithSpecific 方法
使用特定的编辑器中,添加一个项。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function AddItemWithSpecific ( _
itemidLoc As UInteger, _
dwAddItemOperation As VSADDITEMOPERATION, _
pszItemName As String, _
cFilesToOpen As UInteger, _
rgpszFilesToOpen As String(), _
hwndDlgOwner As IntPtr, _
grfEditorFlags As UInteger, _
ByRef rguidEditorType As Guid, _
pszPhysicalView As String, _
ByRef rguidLogicalView As Guid, _
<OutAttribute> pResult As VSADDRESULT() _
) As Integer
int AddItemWithSpecific(
uint itemidLoc,
VSADDITEMOPERATION dwAddItemOperation,
string pszItemName,
uint cFilesToOpen,
string[] rgpszFilesToOpen,
IntPtr hwndDlgOwner,
uint grfEditorFlags,
ref Guid rguidEditorType,
string pszPhysicalView,
ref Guid rguidLogicalView,
VSADDRESULT[] pResult
)
参数
- itemidLoc
类型:System.UInt32
[in] 添加项的项 ID。值从 VSITEMIDDWORD中采用。
- dwAddItemOperation
类型:Microsoft.VisualStudio.Shell.Interop.VSADDITEMOPERATION
[in] 从 VSADDITEMOPERATION 枚举采用的值。
- pszItemName
类型:System.String
[in] 要添加的项目的名称。
- cFilesToOpen
类型:System.UInt32
[in] 打开的文件的数字。
- rgpszFilesToOpen
类型:array<System.String[]
[in, size_is(cFilesToOpen)] 文件的实际数目已通过使用 cFilesToOpen。
- hwndDlgOwner
类型:System.IntPtr
[in] 处理到对话框。
- grfEditorFlags
类型:System.UInt32
[in] 值从 __VSSPECIFICEDITORFLAGS 枚举所采用的标志。
- rguidEditorType
类型:System.Guid%
[in] 编辑类型的唯一标识符。
- pszPhysicalView
类型:System.String
[in] 物理视图的名称。
- rguidLogicalView
类型:System.Guid%
[in] 逻辑视图的名称。
- pResult
类型:array<Microsoft.VisualStudio.Shell.Interop.VSADDRESULT[]
[out, retval] 值从 VSADDRESULT 枚举执行的结果。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsProject3::AddItemWithSpecific(
[in] VSITEMID itemidLoc,
[in] VSADDITEMOPERATION dwAddItemOperation,
[in] LPCOLESTR pszItemName,
[in] ULONG cFilesToOpen,
[in, size_is(cFilesToOpen)] LPCOLESTR rgpszFilesToOpen[],
[in] HWND hwndDlgOwner,
[in] VSSPECIFICEDITORFLAGS grfEditorFlags,
[in] REFGUID rguidEditorType,
[in] LPCOLESTR pszPhysicalView,
[in] REFGUID rguidLogicalView,
[out, retval] VSADDRESULT *pResult
);
使用指定的版本信息,此方法用于将项添加到项目和其他请求该项目打开项目。它是 AddItem扩展。
实现与 OpenSpecificEditor结合使用。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。