Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the child list of the specified item that has been expanded in the tree view.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function GetExpandedList ( _
index As UInteger, _
<OutAttribute> ByRef pfCanRecurse As Integer, _
<OutAttribute> ByRef ppIVsSimplePreviewChangesList As IVsSimplePreviewChangesList _
) As Integer
int GetExpandedList(
uint index,
out int pfCanRecurse,
out IVsSimplePreviewChangesList ppIVsSimplePreviewChangesList
)
int GetExpandedList(
[InAttribute] unsigned int index,
[OutAttribute] int% pfCanRecurse,
[OutAttribute] IVsSimplePreviewChangesList^% ppIVsSimplePreviewChangesList
)
abstract GetExpandedList :
index:uint32 *
pfCanRecurse:int byref *
ppIVsSimplePreviewChangesList:IVsSimplePreviewChangesList byref -> int
function GetExpandedList(
index : uint,
pfCanRecurse : int,
ppIVsSimplePreviewChangesList : IVsSimplePreviewChangesList
) : int
Parameters
- index
Type: System.UInt32
[in] The index of the item for which to get its children.
- pfCanRecurse
Type: System.Int32%
[out] Returns nonzero (TRUE) if the child list can be recursively called to access its children; otherwise, returns zero (FALSE).
- ppIVsSimplePreviewChangesList
Type: Microsoft.VisualStudio.Shell.Interop.IVsSimplePreviewChangesList%
[out] Returns an IVsSimplePreviewChangesList object that contains the requested children elements.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IVsSimplePreviewChangesList::GetExpandedList(
[in] ULONG Index,
[out] BOOL *pfCanRecurse,
[out] IVsSimplePreviewChangesList **ppIVsSimplePreviewChangesList
);
.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.