Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Sets the root object of the tree.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function SetRoot ( _
pList As IVsLiteTreeList, _
<OutAttribute> ByRef ppClone As IVsLiteTree _
) As Integer
'Usage
Dim instance As IVsLiteTree
Dim pList As IVsLiteTreeList
Dim ppClone As IVsLiteTree
Dim returnValue As Integer
returnValue = instance.SetRoot(pList, _
ppClone)
int SetRoot(
IVsLiteTreeList pList,
out IVsLiteTree ppClone
)
int SetRoot(
[InAttribute] IVsLiteTreeList^ pList,
[OutAttribute] IVsLiteTree^% ppClone
)
abstract SetRoot :
pList:IVsLiteTreeList *
ppClone:IVsLiteTree byref -> int
function SetRoot(
pList : IVsLiteTreeList,
ppClone : IVsLiteTree
) : int
Parameters
- pList
Type: Microsoft.VisualStudio.Shell.Interop.IVsLiteTreeList
[in] Pointer to an IVsLiteTreeList instance to use as the root.
- ppClone
Type: Microsoft.VisualStudio.Shell.Interop.IVsLiteTree%
[out] Pointer to an IVsLiteTree that is a clone of the tree. Use null if you don't want to clone the tree.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
[C++]
From vsshell.idl:
HRESULT IVsLiteTree::SetRoot(
[in] IVsLiteTreeList *pList,
[out] IVsLiteTree **ppClone
);
.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.