Compartilhar via


Método IVsLiteTreeList.GetExpandable (UInt32, Int32)

 

Especifica se um item é expansível.

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

Sintaxe

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

Parâmetros

  • index
    [in] Especifica o índice do nó de interesse.
  • pfExpandable
    trueSe o item é expansível.

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 IVsLiteTreeList::GetExpandable(
   [in] ULONG Index,
   [out] BOOL *pfExpandable
);

GetExpandablenão é chamado se TF_NOEXPANSION está definida.

Consulte também

Interface IVsLiteTreeList
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo