corelibraries-devexpress-dot-data-dot-rowdeletedeventargs-f615cda7.md
Gets the currently processed row.
Namespace : DevExpress.Data
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public object Row { get; }
Public ReadOnly Property Row As Object
| Type | Description |
|---|---|
| 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
private void GridView_RowDeleted(object sender, RowDeletedEventArgs e) {
this.Context.DeleteObject(e.Row);
}
winforms-grid-crud-operations-odata/VB/DxSample/MainForm.vb#L34
Private Sub GridView_RowDeleted(ByVal sender As Object, ByVal e As RowDeletedEventArgs) Handles GridView.RowDeleted
Me.Context.DeleteObject(e.Row)
End Sub
See Also