IVsObjectList2::GetExpandedList Method (UInt32, Int32, IVsLiteTreeList^)

 

Expands a tree list node.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

int GetExpandedList(
	unsigned int index,
	[OutAttribute] int% pfCanRecurse,
	[OutAttribute] IVsLiteTreeList^% pptlNode
)

Parameters

index
Type: System::UInt32

[in] Specifies the index of the child node of the current tree list to be expanded.

pfCanRecurse
Type: System::Int32

[out] Pointer to a flag indicating that the tree list can recurse.

pptlNode
Type: Microsoft.VisualStudio.Shell.Interop::IVsLiteTreeList^

[out] Pointer to the selected node's IVsLiteTreeList interface.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell80.idl:

[C++]

HRESULT IVsObjectList2::GetExpandedList(
   [in] ULONG Index, 
   [out] BOOL *pfCanRecurse, 
   [out] IVsLiteTreeList **pptlNode
   );

On successful return, the tree list node is expanded in the object browser window, showing all child nodes. This is one of two available mechanisms for expanding a list. The preferred mechanism is GetCategoryField2.

Return to top
Show: