Compartilhar via


Método IVsLiteTree.CloneTreeAbsolute (UInt32, IVsLiteTree)

 

Publicado: abril de 2016

Clona a estrutura de árvore iniciando um nó específico.

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

Sintaxe

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

Parâmetros

  • AbsIndex
    [in] Índice do nó em que começa a clonagem.
  • retVal
    [out] Ponteiro para o clonado IVsLiteTree interface.

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

[C++]

De vsshell.idl:

HRESULT IVsLiteTree::CloneTreeAbsolute(
   [in] ULONG AbsIndex, 
   [out, retval] IVsLiteTree **retVal
); 

Consulte também

Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo