Compartilhar via


Método IVsLiteTree.GetDescendantItemCount (UInt32, UInt32)

 

Publicado: abril de 2016

Retorna o número de descendentes de um nó específico.

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

Sintaxe

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

Parâmetros

  • AbsIndex
    [in] Índice do nó para verificar.Use -1 na primeira chamada.
  • pCount
    [out] Ponteiro para o número de descendentes; 0 se não expandida.

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

[C++]

De vsshell.idl:

HRESULT IVsLiteTree::GetDescendantItemCount(
   [in] ULONG AbsIndex, 
   [out] ULONG *pCount
);

Consulte também

Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo