Compartilhar via


Método IVsLiteTree.QueryItemVisible (UInt32, Int32)

 

Publicado: abril de 2016

Indica se um item está visível.

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

Sintaxe

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

Parâmetros

  • AbsIndex
    [in] Índice do nó do item.
  • pfVisible
    [out] Ponteiro para um valor booleano.Definido como true se o nó é visível; falseCaso contrário.

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

Consulte também

Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo