Skip to main content

RowEditingEventArgs(Int32, Int32, EditingRowAction) Constructor

Initializes a new instance of the RowEditingEventArgs class.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public RowEditingEventArgs(
    int rowHandle,
    int sourceRowIndex,
    EditingRowAction action
)

Parameters

Name Type Description
rowHandle Int32

An integer value that specifies the row handle. This value is assigned to the RowHandle property.

sourceRowIndex Int32

An integer value that specifies the row index in the data source. This value is assigned to the SourceRowIndex property.

action EditingRowAction

An EditingRowAction enumeration value specifying how the data row editor has been closed. This value is assigned to the RowEditingEventArgs.Action property.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

Instances of the RowEditingEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also