Skip to main content

GridControl.RowTap Event

Occurs when a data row is tapped.

Namespace: DevExpress.Mobile.DataGrid

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

Declaration

public event RowTapEventHandler RowTap

Event Data

The RowTap event's data class is RowTapEventArgs. The following properties provide information specific to this event:

Property Description
FieldName Gets the field name of a column to which the tapped cell belongs.
RowHandle Gets the row handle. Inherited from RowEventArgs.

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.

The RowTap event occurs after an end-user taps any data row in the grid. The event parameter’s RowEventArgs.RowHandle property allows you to obtain which row has been tapped.

If an end-user taps a row that is not selected, the GridControl.SelectionChanged event is also raised.

You can also use the GridControl.RowTapCommand property to define an action to be performed when the grid’s row is tapped.

See Also