IVsObjectList2.GetMultipleSourceItems 方法
返回 ItemID 具有给定的源文件对应项列表,如果多个。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop.8.0(在 Microsoft.VisualStudio.Shell.Interop.8.0.dll 中)
语法
声明
Function GetMultipleSourceItems ( _
index As UInteger, _
grfGSI As UInteger, _
cItems As UInteger, _
<OutAttribute> rgItemSel As VSITEMSELECTION() _
) As Integer
int GetMultipleSourceItems(
uint index,
uint grfGSI,
uint cItems,
VSITEMSELECTION[] rgItemSel
)
参数
- index
类型:System.UInt32
[in] 指定列表项的索引相关。
- grfGSI
类型:System.UInt32
[in] 标记提供有关如何的信息应返回选定项。值从 __VSGSIFLAGS 枚举中采用。
- cItems
类型:System.UInt32
[in] 在 rgItemSel返回的项数。
- rgItemSel
类型:array<Microsoft.VisualStudio.Shell.Interop.VSITEMSELECTION[]
[out] 一些包含每个选定项的一个 IVsHierarchy 指针和项 ID 的 VSITEMSELECTION 结构。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell80.idl:
[C++]
HRESULT IVsObjectList2::GetMultipleSourceItems(
[in] ULONG Index,
[in] VSGSIFLAGS grfGSI,
[in] ULONG cItems,
[out, size_is(cItems)] VSITEMSELECTION rgItemSel[]);
,如果初始调用 CountSourceItems 返回所计数大于 1.,该环境调用 GetMultipleSourceItems 。 请注意所有 ItemIds 必须属于同一 IVsHierarchy (返回通过 CountSourceItems。
此方法仅适用于 类视图 。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。