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.
Expands an item by selected by absolute index.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function ToggleExpansionAbsolute ( _
index As UInteger, _
<OutAttribute> ByRef pfCanRecurse As Integer, _
<OutAttribute> ByRef pChange As Integer _
) As Integer
int ToggleExpansionAbsolute(
uint index,
out int pfCanRecurse,
out int pChange
)
int ToggleExpansionAbsolute(
[InAttribute] unsigned int index,
[OutAttribute] int% pfCanRecurse,
[OutAttribute] int% pChange
)
abstract ToggleExpansionAbsolute :
index:uint32 *
pfCanRecurse:int byref *
pChange:int byref -> int
function ToggleExpansionAbsolute(
index : uint,
pfCanRecurse : int,
pChange : int
) : int
Parameters
- index
Type: System.UInt32
[in] Integer. The absolute index of the node to expand.
- pfCanRecurse
Type: System.Int32%
[out] Pointer to a Boolean. Set to true if the tree list can be recursive.
- pChange
Type: System.Int32%
[out] Pointer to an integer. Set to zero (0) if there is no change.
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::ToggleExpansionAbsolute(
[in] ULONG Index,
[out] BOOL *pfCanRecurse,
[out] long *pChange
);
.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.