Método IVsTrackSelectionEx.GetCurrentSelection (IntPtr, UInt32, IVsMultiItemSelect, IntPtr)
Retorna a seleção atual.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetCurrentSelection(
out IntPtr ppHier,
out uint pitemid,
out IVsMultiItemSelect ppMIS,
out IntPtr ppSC
)
int GetCurrentSelection(
[OutAttribute] IntPtr% ppHier,
[OutAttribute] unsigned int% pitemid,
[OutAttribute] IVsMultiItemSelect^% ppMIS,
[OutAttribute] IntPtr% ppSC
)
abstract GetCurrentSelection :
ppHier:nativeint byref *
pitemid:uint32 byref *
ppMIS:IVsMultiItemSelect byref *
ppSC:nativeint byref -> int
Function GetCurrentSelection (
<OutAttribute> ByRef ppHier As IntPtr,
<OutAttribute> ByRef pitemid As UInteger,
<OutAttribute> ByRef ppMIS As IVsMultiItemSelect,
<OutAttribute> ByRef ppSC As IntPtr
) As Integer
Parâmetros
- ppHier
[out] Ponteiro para um ponteiro para o IVsHierarchy interface da seleção atual.
- pitemid
[out] Ponteiro para o identificador do item da seleção atual.Para obter uma lista válida pitemid valores, consulte VSITEMID.
- ppMIS
[out] Ponteiro para um ponteiro para o IVsMultiItemSelect interface da janela contendo a seleção atual.
- ppSC
[out] Ponteiro para um ponteiro para o ISelectionContainer interface da seleção atual.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsTrackSelectionEx::GetCurrentSelection(
[out] IVsHierarchy ** ppHier,
[out] VSITEMID * pitemid,
[out] IVsMultiItemSelect ** ppMIS,
[out] ISelectionContainer **ppSC
);
Se o conteúdo na pitemid parâmetro é VSITEMID_SELECTION, que indica que indicam uma seleção composta de vários itens, recuperar os itens selecionados com GetSelectedItems usando a interface apontada por ppMIS.
Consulte também
Interface IVsTrackSelectionEx
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo