Removes the item at the specified position from the collection.

Namespace:  C1.Data.DataSource
Assembly:  C1.Data.Entity (in C1.Data.Entity.dll)

Syntax

C#
public void RemoveAt(
	int index
)
Visual Basic
Public Sub RemoveAt ( _
	index As Integer _
)

Parameters

index
Type: System..::..Int32
The position of the item to remove.

Implements

IEditableCollectionView..::..RemoveAt(Int32)

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionindex is less than 0 or greater than the number of items in the collection view.

See Also