IVsMonitorSelection.GetCurrentSelection 方法
返回当前项目层次结构、项目项和选择容器当前选定内容的。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function GetCurrentSelection ( _
<OutAttribute> ByRef ppHier As IntPtr, _
<OutAttribute> ByRef pitemid As UInteger, _
<OutAttribute> ByRef ppMIS As IVsMultiItemSelect, _
<OutAttribute> ByRef ppSC As IntPtr _
) As Integer
int GetCurrentSelection(
out IntPtr ppHier,
out uint pitemid,
out IVsMultiItemSelect ppMIS,
out IntPtr ppSC
)
参数
- ppHier
类型:System.IntPtr%
[out] 对当前项层次结构的 IVsHierarchy 接口的指针,如果选定内容属于单个层次结构。如果选定内容属于多个层次结构, ppHier 设置为 nullnull 引用(在 Visual Basic 中为 Nothing)。
- pitemid
类型:System.UInt32%
[out] 对标识符的指针当前项目项的。如果 pitemid 设置为 VSITEMID_SELECTION,当前选定内容涉及多个项目。这些项目只能访问使用 ppMIS点为 IVsMultiItemSelect 接口。
- ppMIS
类型:Microsoft.VisualStudio.Shell.Interop.IVsMultiItemSelect%
[out] 对要使用的 IVsMultiItemSelect 接口的指针访问一个多重选择。
- ppSC
类型:System.IntPtr%
[out] 对要使用的 ISelectionContainer 接口的指针访问数据。 " 属性 " 窗口。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsMonitorSelection::GetCurrentSelection(
[out] IVsHierarchy **ppHier,
[out] VSITEMID *pitemid,
[out] IVsMultiItemSelect **ppMIS,
[out] ISelectionContainer **ppSC
);
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。