CurrencyManager.RemoveAt(Int32) Method

Definition

Removes the item at the specified index.

C#
public override void RemoveAt(int index);

Parameters

index
Int32

The index of the item to remove from the list.

Exceptions

There is no row at the specified index.

Examples

The following code example uses the RemoveAt method to remove the item at position 0 in the list.

C#
private void RemoveFromList(){
    // Get the CurrencyManager of a TextBox control.
    CurrencyManager myCurrencyManager = (CurrencyManager)textBox1.BindingContext[0];
    // If the count is 0, exit the function.
    if(myCurrencyManager.Count > 1)
    myCurrencyManager.RemoveAt(0);
}

Remarks

The RemoveAt method was designed to allow complex controls, such as the DataGrid control, to remove items from the list. You should not use this method to actually remove items. Instead, use the Delete method of the DataView class to delete items.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also