IVsTrackSelectionEx.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 接口。
- pitemid
类型:System.UInt32%
[out] 为当前选择的项 ID 的指针。有关有效的 pitemid 值列表,请参见 VSITEMID。
- ppMIS
类型:Microsoft.VisualStudio.Shell.Interop.IVsMultiItemSelect%
[out] 为指针的指针包含当前选择的窗口的 IVsMultiItemSelect 接口。
- ppSC
类型:System.IntPtr%
[out] 为指针的指针当前选择的 ISelectionContainer 接口。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsTrackSelectionEx::GetCurrentSelection(
[out] IVsHierarchy ** ppHier,
[out] VSITEMID * pitemid,
[out] IVsMultiItemSelect ** ppMIS,
[out] ISelectionContainer **ppSC
);
如果 pitemid 参数的内容是 VSITEMID_SELECTION,指示指示选择由多个项目组成,请检索与 GetSelectedItems 的选定的项目使用接口指向由 ppMIS。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。