Skip to main content
A newer version of this page is available. .

EditFormShowingEventArgs.RowHandle Property

Gets the row handle that identifies the grid row for which an Edit Form is opening.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public int RowHandle { get; }

Property Value

Type Description
Int32

The row handle that identifies the grid row for which an Edit Form is opening.

Remarks

When you handle the GridView.EditFormShowing event, you can get the row handle that identifies the grid row for which an Edit Form is opening via the RowHandle property. To learn more on how to identify rows, see the Rows topic.

Example

The following example shows how to prohibit an Edit Form from opening in specific rows.

In this example, the GridView.EditFormShowing event is handled and the Allow event parameter is set to false for orders shipped to France.

using DevExpress.XtraGrid.Views.Grid;

gridView1.EditFormShowing += new EditFormShowingEventHandler(OnEditFormShowing);
//...
private void OnEditFormShowing(object sender, EditFormShowingEventArgs e) {
    GridView view = sender as GridView;
    if (view == null) return;
    if (view.GetRowCellValue(e.RowHandle, "ShipCountry").ToString() == "France") e.Allow = false;
}
See Also