IVsObjectList2.LocateExpandedList Method
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaración
Function LocateExpandedList ( _
ExpandedList As IVsLiteTreeList, _
<OutAttribute> ByRef iIndex As UInteger _
) As Integer
'Uso
Dim instance As IVsObjectList2
Dim ExpandedList As IVsLiteTreeList
Dim iIndex As UInteger
Dim returnValue As Integer
returnValue = instance.LocateExpandedList(ExpandedList, _
iIndex)
int LocateExpandedList(
IVsLiteTreeList ExpandedList,
out uint iIndex
)
int LocateExpandedList(
[InAttribute] IVsLiteTreeList^ ExpandedList,
[OutAttribute] unsigned int% iIndex
)
abstract LocateExpandedList :
ExpandedList:IVsLiteTreeList *
iIndex:uint32 byref -> int
function LocateExpandedList(
ExpandedList : IVsLiteTreeList,
iIndex : uint
) : int
Parameters
- ExpandedList
Type: Microsoft.VisualStudio.Shell.Interop.IVsLiteTreeList
[in] Pointer to the IVsLiteTreeList interface that specifies an expanded list.
- iIndex
Type: System.UInt32%
[out] Pointer to an integer containing the index of the specified tree list.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
[C++]
HRESULT IVsObjectList2::LocateExpandedList(
[in] IVsLiteTreeList* ExpandedList,
[out] ULONG *iIndex
);
The environment calls this method during a ReAlign command if the node's TF_NORELOCATE attribute is not set, as determined by a call to GetFlags. If the list cannot be located, ExpandedList is discarded.
.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.