Skip to main content

GridControl.RowTapCommand Property

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

public ICommand RowTapCommand { get; set; }

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 GridControl and suggest that you use the new DataGridView control instead.

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