IVsLiteTree.GetExpandedListAbsolute(UInt32, UInt32, IVsLiteTreeList) Method

Definition

Returns the expanded list at the given index, if any.

public:
 int GetExpandedListAbsolute(System::UInt32 AbsIndex, [Runtime::InteropServices::Out] System::UInt32 % pLevel, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsLiteTreeList ^ % pptl);
int GetExpandedListAbsolute(unsigned int AbsIndex, [Runtime::InteropServices::Out] unsigned int & pLevel, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsLiteTreeList const & & pptl);
public int GetExpandedListAbsolute (uint AbsIndex, out uint pLevel, out Microsoft.VisualStudio.Shell.Interop.IVsLiteTreeList pptl);
abstract member GetExpandedListAbsolute : uint32 * uint32 * IVsLiteTreeList -> int
Public Function GetExpandedListAbsolute (AbsIndex As UInteger, ByRef pLevel As UInteger, ByRef pptl As IVsLiteTreeList) As Integer

Parameters

AbsIndex
UInt32

[in] Absolute index for which to retrieve the expanded list.

pLevel
UInt32

[out] Pointer to an integer containing the level.

pptl
IVsLiteTreeList

[out] Pointer to a IVsLiteTreeList interface for the expanded list.

Returns

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::GetExpandedListAbsolute(  
   [in] ULONG AbsIndex,  
   [out] ULONG* pLevel,  
   [out] IVsLiteTreeList** pptl  
);  

Applies to