Skybound AutoComplete

AutoComplete.ObjectCollection.Insert Method 

Inserts a Object into this instance at the specified index.

[Visual Basic]
Overridable Public Sub Insert( _
   ByVal index As Integer, _
   ByVal value As Object _
)
[C#]
public virtual void Insert(
   int index,
   object value
);

Parameters

index
The index at which the Object is inserted.
value
The Object to insert.

Exceptions

Exception Type Condition
ArgumentNullException The item parameter was a null reference (Nothing in Visual Basic).
ArgumentOutOfRangeException

The index was less than zero.

-or-

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

See Also

AutoComplete.ObjectCollection Class | Skybound.AutoComplete Namespace