Método IVsLiteTree.GetItemInfoAbsolute (UInt32, IVsLiteTreeList, UInt32, UInt32)
Publicado: abril de 2016
Recupera a lista de um nó pai.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetItemInfoAbsolute(
uint AbsIndex,
out IVsLiteTreeList pptl,
out uint pIndex,
out uint pLevel
)
int GetItemInfoAbsolute(
unsigned int AbsIndex,
[OutAttribute] IVsLiteTreeList^% pptl,
[OutAttribute] unsigned int% pIndex,
[OutAttribute] unsigned int% pLevel
)
abstract GetItemInfoAbsolute :
AbsIndex:uint32 *
pptl:IVsLiteTreeList byref *
pIndex:uint32 byref *
pLevel:uint32 byref -> int
Function GetItemInfoAbsolute (
AbsIndex As UInteger,
<OutAttribute> ByRef pptl As IVsLiteTreeList,
<OutAttribute> ByRef pIndex As UInteger,
<OutAttribute> ByRef pLevel As UInteger
) As Integer
Parâmetros
- AbsIndex
[in] Integer que contém o índice absoluto do nó de árvore.
- pptl
[out] Ponteiro para o IVsLiteTreeList do pai.
- pIndex
[out] Ponteiro para um inteiro que contém o índice.
- pLevel
[out] Ponteiro para um valor inteiro que contém um ní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
[C++]
De vsshell.idl:
HRESULT IVsLiteTree::GetItemInfoAbsolute(
[in] ULONG AbsIndex,
[out] IVsLiteTreeList **pptl,
[out] ULONG *pIndex,
[out] ULONG *pLevel
);
Consulte também
Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo