Método IVsLiteTreeEvents.OnQueryItemVisible (UInt32, Int32)
Verifica se o item especificado está visível.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int OnQueryItemVisible(
uint AbsIndex,
out int pfVisible
)
int OnQueryItemVisible(
unsigned int AbsIndex,
[OutAttribute] int% pfVisible
)
abstract OnQueryItemVisible :
AbsIndex:uint32 *
pfVisible:int byref -> int
Function OnQueryItemVisible (
AbsIndex As UInteger,
<OutAttribute> ByRef pfVisible As Integer
) As Integer
Parâmetros
- AbsIndex
[In] Um inteiro que contém o índice absoluto do Item a consulta.
- pfVisible
[Out] Um ponteiro para um valor booleano valor esse retorno TRUE se o Item estiver visível, FALSE se não estiver visí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 IVsLiteTreeEvents::OnQueryItemVisible(
[in] ULONG AbsIndex,
[out] BOOL *pfVisible
);
Consulte também
Interface IVsLiteTreeEvents
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo