Back to Devexpress

RowDeletedEventArgs.Row Property

corelibraries-devexpress-dot-data-dot-rowdeletedeventargs-f615cda7.md

latest2.2 KB
Original Source

RowDeletedEventArgs.Row Property

Gets the currently processed row.

Namespace : DevExpress.Data

Assembly : DevExpress.Data.v25.2.dll

NuGet Package : DevExpress.Data

Declaration

csharp
public object Row { get; }
vb
Public ReadOnly Property Row As Object

Property Value

TypeDescription
Object

The currently processed row.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Row property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-grid-crud-operations-odata/CS/DxSample/MainForm.cs#L30

csharp
private void GridView_RowDeleted(object sender, RowDeletedEventArgs e) {
    this.Context.DeleteObject(e.Row);
}

winforms-grid-crud-operations-odata/VB/DxSample/MainForm.vb#L34

vb
Private Sub GridView_RowDeleted(ByVal sender As Object, ByVal e As RowDeletedEventArgs) Handles GridView.RowDeleted
    Me.Context.DeleteObject(e.Row)
End Sub

See Also

RowDeletedEventArgs Class

RowDeletedEventArgs Members

DevExpress.Data Namespace