Inserts an element into the Collection<(Of <(<'T>)>)> at the specified index.

Namespace:  C1.Web.UI.Controls.C1ComboBox
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
protected override void InsertItem(
	int index,
	C1ComboCell item
)
Visual Basic (Declaration)
Protected Overrides Sub InsertItem ( _
	index As Integer, _
	item As C1ComboCell _
)

Parameters

index
Type: System..::..Int32
The zero-based index at which item should be inserted.
item
Type: C1.Web.UI.Controls.C1ComboBox..::..C1ComboCell
The object to insert. The value can be null for reference types.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionindex is less than zero. -or- index is greater than Count.

See Also