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 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
'Declaration
Function GetExpandedListAbsolute ( _
AbsIndex As UInteger, _
<OutAttribute> ByRef pLevel As UInteger, _
<OutAttribute> ByRef pptl As IVsLiteTreeList _
) As Integer
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
- 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.