ItemCollection.RemoveAt(Int32) Method

Definition

Removes the item at the specified index of the collection or view.

public:
 virtual void RemoveAt(int removeIndex);
public void RemoveAt (int removeIndex);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (removeIndex As Integer)

Parameters

removeIndex
Int32

The zero-based index of the item to remove.

Implements

Exceptions

The ItemCollection is read-only because it is in ItemsSource mode or if DeferRefresh is in effect.

The index is out of range.

Remarks

When an item is removed from the collection, any remaining items with higher index values decrement their index by one as the size of the collection collapses.

Applies to