Método IVsLiteTree.EnumAbsoluteIndices (IVsLiteTreeList, UInt32, IntPtr, UInt32)
Publicado: abril de 2016
Enumera os itens em um árvore iniciando de lista em um índice específico.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int EnumAbsoluteIndices(
IVsLiteTreeList pList,
uint index,
ref IntPtr ppvNext,
out uint pAbsIndex
)
int EnumAbsoluteIndices(
IVsLiteTreeList^ pList,
unsigned int index,
IntPtr% ppvNext,
[OutAttribute] unsigned int% pAbsIndex
)
abstract EnumAbsoluteIndices :
pList:IVsLiteTreeList *
index:uint32 *
ppvNext:nativeint byref *
pAbsIndex:uint32 byref -> int
Function EnumAbsoluteIndices (
pList As IVsLiteTreeList,
index As UInteger,
ByRef ppvNext As IntPtr,
<OutAttribute> ByRef pAbsIndex As UInteger
) As Integer
Parâmetros
- pList
[in] Ponteiro para o IVsLiteTreeList.
- index
[in] Iniciando o índice.
- ppvNext
[in, out] Ponteiro para o próximo item na lista.Use NULL se você quiser usar o índice absoluto.
- pAbsIndex
[out] O índice absoluto do 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
Para obter mais informações sobre como enumerar listas de árvore e sua estrutura, consulte IVsLiteTreeList.
COM assinatura
[C++]
De vsshell.idl:
HRESULT IVsLiteTree::EnumAbsoluteIndices(
[in] IVsLiteTreeList *pList,
[in] ULONG Index,
[in,out] void** ppvNext,
[out] ULONG *pAbsIndex
);
Consulte também
Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo