Compartilhar via


Método IVsLiteTree.GetParentIndexAbsolute (UInt32, UInt32)

 

Publicado: abril de 2016

Obtém a próxima lista expandida visível.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int GetParentIndexAbsolute(
    uint AbsIndex,
    out uint pParentIndex
)
int GetParentIndexAbsolute(
    unsigned int AbsIndex,
    [OutAttribute] unsigned int% pParentIndex
)
abstract GetParentIndexAbsolute : 
        AbsIndex:uint32 *
        pParentIndex:uint32 byref -> int
Function GetParentIndexAbsolute (
    AbsIndex As UInteger,
    <OutAttribute> ByRef pParentIndex As UInteger
) As Integer

Parâmetros

  • AbsIndex
    [in] Integer que contém o índice absoluto do nó.Use -1 na primeira chamada ou o índice de um nó expandido.
  • pParentIndex
    [out] Ponteiro para o índice da lista expandida.Definido como null se não houver mais nenhum listas disponíveis.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Retorna S_FALSE se há mais nenhum listas.Retorna E_FAIL se o índice está fora do intervalo.

Comentários

COM assinatura

[C++]

De vsshell.idl:

HRESULT IVsLiteTree::GetParentIndexAbsolute(
   [in] ULONG AbsIndex, 
   [out] ULONG* pParentIndex
);

Consulte também

Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo