DataView.Delete(Int32) Método

Definición

Elimina una fila en el índice especificado.

public:
 void Delete(int index);
public void Delete(int index);
member this.Delete : int -> unit
Public Sub Delete (index As Integer)

Parámetros

index
Int32

Índice de la fila que se desea eliminar.

Ejemplos

En el ejemplo siguiente se usa el Delete método para eliminar una fila.

Private Sub DeleteRow(view As DataView, val As String)
    ' Find the given value in the DataView and delete the row.
    Dim i As Integer = view.Find(val)

    If i = -1 Then
        ' The value wasn'table found
        Console.WriteLine("Value not found in primary key column")
        Exit Sub
    Else
        view.Delete(i)
    End If
End Sub

Comentarios

Después de eliminar un DataRow, su estado cambia a DataViewRowState.Deleted. Puede revertir la eliminación llamando a RejectChanges en .DataTable

Se aplica a

Consulte también