IVsUserContextItemCollection.ItemAt Method
Retrieves an item from the collection by integer index.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Déclaration
Function ItemAt ( _
index As Integer, _
<OutAttribute> ByRef ppItem As IVsUserContextItem _
) As Integer
'Utilisation
Dim instance As IVsUserContextItemCollection
Dim index As Integer
Dim ppItem As IVsUserContextItem
Dim returnValue As Integer
returnValue = instance.ItemAt(index, ppItem)
int ItemAt(
int index,
out IVsUserContextItem ppItem
)
int ItemAt(
[InAttribute] int index,
[OutAttribute] IVsUserContextItem^% ppItem
)
abstract ItemAt :
index:int *
ppItem:IVsUserContextItem byref -> int
function ItemAt(
index : int,
ppItem : IVsUserContextItem
) : int
Parameters
- index
Type: System.Int32
- ppItem
Type: Microsoft.VisualStudio.Shell.Interop.IVsUserContextItem%
[out] Pointer to a IVsUserContextItem interface giving access to the item.
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 context.idl:
HRESULT IVsUserContextItemCollection::ItemAt(
[in] long index,
[out, retval] IVsUserContextItem ** ppItem
);
.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.
See Also
Reference
IVsUserContextItemCollection Interface