Skybound AutoComplete

AutoComplete.VisibleItemsCollection.Item Property

Gets an item from the collection.

[Visual Basic]
Public Default ReadOnly Property Item( _
   ByVal index As Integer _
) As String
[C#]
public string this[
   int index
] {get;}

Property Value

A Stringb> 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.

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.VisibleItemsCollection Class | Skybound.AutoComplete Namespace