Skybound AutoComplete

AutoComplete.ObjectCollection.Item Property

Gets or sets the Object at the given index in this instance.

[Visual Basic]
Overridable Public Default Property Item( _
   ByVal index As Integer _
) As Object
[C#]
public virtual object this[
   int index
] {get; set;}

Property Value

An object representing the item located at the specified index within the collection.

Remarks

You can use this method to obtain the item at the specified location within the collection. You can use IndexOf to find the location of an item, or you can use the index return from the Add method.

Exceptions

Exception Type Condition
ArgumentOutOfRangeException

The index was less than zero.

-or-

The index was greater than or equal to the number of items in the collection.

See Also

AutoComplete.ObjectCollection Class | Skybound.AutoComplete Namespace