IVsLiteTree.GetExpandedAbsolute(UInt32, Int32) Method

Definition

Determines whether an item is expanded.

public:
 int GetExpandedAbsolute(System::UInt32 AbsIndex, [Runtime::InteropServices::Out] int % pfExpanded);
int GetExpandedAbsolute(unsigned int AbsIndex, [Runtime::InteropServices::Out] int & pfExpanded);
public int GetExpandedAbsolute (uint AbsIndex, out int pfExpanded);
abstract member GetExpandedAbsolute : uint32 * int -> int
Public Function GetExpandedAbsolute (AbsIndex As UInteger, ByRef pfExpanded As Integer) As Integer

Parameters

AbsIndex
UInt32

[in] Absolute index of the item to test.

pfExpanded
Int32

[out] Pointer to Boolean. Set to true if the item is expanded.

Returns

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

Remarks

C++From vsshell.idl:HRESULT IVsLiteTree::GetExpandedAbsolute([in] ULONG AbsIndex, [out] BOOL *pfExpanded);

Applies to