GridControl.RowTapCommand Property
In This Article
Gets or sets the command executed when an end-user taps a row within the grid. This is a bindable property.
Namespace: DevExpress.Mobile.DataGrid
Assembly: DevExpress.Mobile.Grid.v18.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
ICommand | An object implementing the ICommand interface, that defines the command. |
#Remarks
Important
This documentation topic describes legacy technology. We no longer develop new functionality for the Grid
To define an action to be performed when the grid’s row is tapped, you can implement a command and bind it to the grid using the RowTapCommand property, or handle the GridControl.RowTap event.
A data source object index is passed to the RowTapCommand command as a parameter.
See Also