This document is archived and information here might be outdated. Recommended version. |
Searches for the object in the array.
[Visual Basic .NET]
Public Function get_Element ( _
ByVal index As Integer _
) As Object
[C#]
public object get_Element (
int index
);
[C++]
HRESULT get_Element(
long index,
IUnknown Pointer* unk
);
[C++] Parameters index [in]
index is a parameter of type long unk [out, retval]
unk is a parameter of type IUnknown*
Returns the element at the specified index in the array. The element at the beginning or the array has an index of 0, and the element at the end of the array has in index of Count - 1.