Compartilhar via


Método IVsLiteTree.InsertItems (IVsLiteTreeList, UInt32, UInt32)

 

Publicado: abril de 2016

Inserir itens sem executar o realinhamento.

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

Sintaxe

int InsertItems(
    IVsLiteTreeList pNode,
    uint iAfter,
    uint Count
)
int InsertItems(
    IVsLiteTreeList^ pNode,
    unsigned int iAfter,
    unsigned int Count
)
abstract InsertItems : 
        pNode:IVsLiteTreeList *
        iAfter:uint32 *
        Count:uint32 -> int
Function InsertItems (
    pNode As IVsLiteTreeList,
    iAfter As UInteger,
    Count As UInteger
) As Integer

Parâmetros

  • pNode
    [In] Ponteiro para o IVsLiteTreeList para modificar.Usar o -1 indica desde o início da lista.
  • iAfter
    [In] Índice de inteiros a após o qual será inserido o novo nó.
  • Count
    [In] Integer contendo a contagem de nós inserido.

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

Use com moderação para ajustar um nó existente — não adicionar um nó filho 0 e, em seguida, inserir vários itens.

COM assinatura

[C++]

De vsshell.idl:

HRESULT IVsLiteTree::InsertItems(
   [in] IVsLiteTreeList *pNode, 
   [in] ULONG iAfter, 
   [in] ULONG Count
);

Consulte também

Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo