ArrayList: Item (get)

Item

Returns an item from the list.



 Public Property Get Item(
	  ByVal Index As Long ) As Variant

Parameters

Index
[ByVal] Long. The index in the list from which to return the item.

Return Values

Variant -  The item as the specified index.

Remarks

This property is set as the Default property for this class. Items can be accessed parentheses:

var = list(index)

The index is zero-based.

Read/Write.

See Also

Class ArrayList Overview ArrayList Properties ArrayList Methods IsReadOnly (get) Item (let)