Share via


IVsLiteTree.GetExpandedListAbsolute Method

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

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

Syntax

‘선언
Function GetExpandedListAbsolute ( _
    AbsIndex As UInteger, _
    <OutAttribute> ByRef pLevel As UInteger, _
    <OutAttribute> ByRef pptl As IVsLiteTreeList _
) As Integer
‘사용 방법
Dim instance As IVsLiteTree
Dim AbsIndex As UInteger
Dim pLevel As UInteger
Dim pptl As IVsLiteTreeList
Dim returnValue As Integer

returnValue = instance.GetExpandedListAbsolute(AbsIndex, _
    pLevel, pptl)
int GetExpandedListAbsolute(
    uint AbsIndex,
    out uint pLevel,
    out IVsLiteTreeList pptl
)
int GetExpandedListAbsolute(
    [InAttribute] unsigned int AbsIndex, 
    [OutAttribute] unsigned int% pLevel, 
    [OutAttribute] IVsLiteTreeList^% pptl
)
abstract GetExpandedListAbsolute : 
        AbsIndex:uint32 * 
        pLevel:uint32 byref * 
        pptl:IVsLiteTreeList byref -> int 
function GetExpandedListAbsolute(
    AbsIndex : uint, 
    pLevel : uint, 
    pptl : IVsLiteTreeList
) : int

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.

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

.NET Framework Security

See Also

Reference

IVsLiteTree Interface

IVsLiteTree Members

Microsoft.VisualStudio.Shell.Interop Namespace