Método IVsLiteTree.GetExpandableAbsolute (UInt32, Int32)

 

Publicado: abril de 2016

Determina se ou não é possível expandir um item.

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

Sintaxe

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

Parâmetros

  • AbsIndex
    [in] Índice absoluto do item para verificar.
  • pfCanExpand
    [out] Ponteiro para um valor booleano.Definido como true se você pode expandir o item.

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::GetExpandableAbsolute(
   [in] ULONG AbsIndex, 
   [out] BOOL *pfCanExpand
);

Consulte também

Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo