BindingSource.RemoveAt(Int32) Methode

Definitie

Hiermee verwijdert u het item in de opgegeven index in de lijst.

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

Parameters

index
Int32

De op nul gebaseerde index van het item dat u wilt verwijderen.

Implementeringen

Uitzonderingen

index is kleiner dan nul of groter dan de waarde van de Count eigenschap.

De onderliggende lijst die door de List eigenschap wordt vertegenwoordigd, heeft het kenmerk Alleen-lezen of heeft een vaste grootte.

Voorbeelden

In het volgende codevoorbeeld ziet u de , Listen RemoveAt ledenCount. Als u dit voorbeeld wilt uitvoeren, plakt u de code in een formulier met een BindingSource benoemde BindingSource1naam, twee labels label1 en label2een knop met de naam button1. Koppel de button1_Click methode aan de Click gebeurtenis voor button1. Visual Basic gebruikers een verwijzing naar System.Data.dllmoeten toevoegen.

private void button1_Click(object sender, EventArgs e)
{
    // Create the connection string, data adapter and data table.
    SqlConnection connectionString =
         new SqlConnection("Initial Catalog=Northwind;" +
         "Data Source=localhost;Integrated Security=SSPI;");
    SqlDataAdapter customersTableAdapter =
        new SqlDataAdapter("Select * from Customers", connectionString);
    DataTable customerTable = new DataTable();

    // Fill the adapter with the contents of the customer table.
    customersTableAdapter.Fill(customerTable);

    // Set data source for BindingSource1.
    BindingSource1.DataSource = customerTable;

    // Set the label text to the number of items in the collection before
    // an item is removed.
    label1.Text = "Starting count: " + BindingSource1.Count.ToString();

    // Access the List property and remove an item.
    BindingSource1.List.RemoveAt(4);

    // Remove an item directly from the BindingSource. 
    // This is equivalent to the previous line of code.
    BindingSource1.RemoveAt(4);

    // Show the new count.
    label2.Text = "Count after removal: " + BindingSource1.Count.ToString();
}
    Private Sub button1_Click(ByVal sender As Object, ByVal e As EventArgs) _
        Handles button1.Click

        ' Create the connection string, data adapter and data table.
        Dim connectionString As New SqlConnection("Initial Catalog=Northwind;" & _
            "Data Source=localhost;Integrated Security=SSPI;")
        Dim customersTableAdapter As New SqlDataAdapter("Select * from Customers", _
            connectionString)
        Dim customerTable As New DataTable()

        ' Fill the adapter with the contents of the customer table.
        customersTableAdapter.Fill(customerTable)

        ' Set data source for BindingSource1.
        BindingSource1.DataSource = customerTable

        ' Set the label text to the number of items in the collection before
        ' an item is removed.
        label1.Text = "Starting count: " + BindingSource1.Count.ToString()

        ' Access the List property and remove an item.
        BindingSource1.List.RemoveAt(4)

        ' Remove an item directly from the BindingSource. 
        ' This is equivalent to the previous line of code.
        BindingSource1.RemoveAt(4)

        ' Show the new count.
        label2.Text = "Count after removal: " + BindingSource1.Count.ToString()

    End Sub
End Class

Opmerkingen

Deze twee voorwaarden kunnen respectievelijk worden getest met de IsFixedSize en IsReadOnly eigenschappen.

Met deze methode wordt de ListChanged gebeurtenis gegenereerd.

Van toepassing op

Zie ook