IVsLiteTree::GetExpandedListAbsolute Method (UInt32, UInt32, IVsLiteTreeList^)
Visual Studio 2015
Returns the expanded list at the given index, if any.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int GetExpandedListAbsolute( unsigned int AbsIndex, [OutAttribute] unsigned int% pLevel, [OutAttribute] IVsLiteTreeList^% pptl )
Parameters
- AbsIndex
-
Type:
System::UInt32
[in] Absolute index for which to retrieve the expanded list.
- pLevel
-
Type:
System::UInt32
[out] Pointer to an integer containing the level.
- pptl
-
Type:
Microsoft.VisualStudio.Shell.Interop::IVsLiteTreeList^
[out] Pointer to a IVsLiteTreeList interface for the expanded list.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
[C++]
From vsshell.idl:
HRESULT IVsLiteTree::GetExpandedListAbsolute( [in] ULONG AbsIndex, [out] ULONG* pLevel, [out] IVsLiteTreeList** pptl );
Show: