IVsLiteTree.CloneTreeAbsolute Method
Clones the tree structure starting a specific node.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Déclaration
Function CloneTreeAbsolute ( _
AbsIndex As UInteger, _
<OutAttribute> ByRef retVal As IVsLiteTree _
) As Integer
'Utilisation
Dim instance As IVsLiteTree
Dim AbsIndex As UInteger
Dim retVal As IVsLiteTree
Dim returnValue As Integer
returnValue = instance.CloneTreeAbsolute(AbsIndex, _
retVal)
int CloneTreeAbsolute(
uint AbsIndex,
out IVsLiteTree retVal
)
int CloneTreeAbsolute(
[InAttribute] unsigned int AbsIndex,
[OutAttribute] IVsLiteTree^% retVal
)
abstract CloneTreeAbsolute :
AbsIndex:uint32 *
retVal:IVsLiteTree byref -> int
function CloneTreeAbsolute(
AbsIndex : uint,
retVal : IVsLiteTree
) : int
Parameters
- AbsIndex
Type: System.UInt32
[in] Index of the node at which to begin cloning.
- retVal
Type: Microsoft.VisualStudio.Shell.Interop.IVsLiteTree%
[out] Pointer to the cloned IVsLiteTree interface.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
[C++]
From vsshell.idl:
HRESULT IVsLiteTree::CloneTreeAbsolute(
[in] ULONG AbsIndex,
[out, retval] IVsLiteTree **retVal
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.