Compartilhar via


Método IVsLiteTree.GetExpandedListAbsolute (UInt32, UInt32, IVsLiteTreeList)

 

Publicado: abril de 2016

Retorna a lista expandida no índice fornecido, se houver.

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

Sintaxe

int GetExpandedListAbsolute(
    uint AbsIndex,
    out uint pLevel,
    out IVsLiteTreeList pptl
)
int GetExpandedListAbsolute(
    unsigned int AbsIndex,
    [OutAttribute] unsigned int% pLevel,
    [OutAttribute] IVsLiteTreeList^% pptl
)
abstract GetExpandedListAbsolute : 
        AbsIndex:uint32 *
        pLevel:uint32 byref *
        pptl:IVsLiteTreeList byref -> int
Function GetExpandedListAbsolute (
    AbsIndex As UInteger,
    <OutAttribute> ByRef pLevel As UInteger,
    <OutAttribute> ByRef pptl As IVsLiteTreeList
) As Integer

Parâmetros

  • AbsIndex
    [in] Índice absoluto para o qual deseja recuperar a lista expandida.
  • pLevel
    [out] Ponteiro para um inteiro contendo o nível.
  • Pptl
    [out] Ponteiro para uma IVsLiteTreeList interface para a lista 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::GetExpandedListAbsolute(
   [in] ULONG AbsIndex,
   [out] ULONG* pLevel,
   [out] IVsLiteTreeList** pptl
);

Consulte também

Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo