DataRowCollection.RemoveAt(Int32) Méthode
Définition
Supprime la ligne de la collection à l'index spécifié.Removes the row at the specified index from the collection.
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
Paramètres
- index
- Int32
Index de la ligne à supprimer.The index of the row to remove.
Exemples
L’exemple suivant supprime la dernière ligne d’un DataRowCollection en appelant la RemoveAt méthode.The following example removes the last row in a DataRowCollection by calling the RemoveAt method.
Private Sub RemoveRowByIndex()
Dim table As DataTable = CType(DataGrid1.DataSource, DataTable)
Dim rowCollection As DataRowCollection = table.Rows
If rowCollection.Count = 0 Then
Exit Sub
End If
rowCollection.RemoveAt(rowCollection.Count - 1)
End Sub
Remarques
Lorsqu’une ligne est supprimée, toutes les données de cette ligne sont perdues.When a row is removed, all data in that row is lost. Vous pouvez également appeler la Delete méthode de la DataRow classe pour marquer simplement une ligne en vue de sa suppression.You can also call the Delete method of the DataRow class to just mark a row for removal. L' RemoveAt
appel de est identique à Delete l’appel de AcceptChanges, puis à l’appel de.Calling RemoveAt
is the same as calling Delete and then calling AcceptChanges.
Vous pouvez utiliser la Clear méthode pour supprimer tous les membres de la collection à la fois.You can use the Clear method to remove all members of the collection at one time.