Skip to main content

GridControl.SwipeButtonCommand Property

Gets or sets the command executed when a swipe button is tapped. This is a bindable property.

Namespace: DevExpress.Mobile.DataGrid

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

Declaration

public ICommand SwipeButtonCommand { 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.

Along with the SwipeButtonCommand command, GridControl provides you with the GridControl.SwipeButtonClick event. Both (command and event) rise when an end-user clicks any of the swipe buttons. To determine which swipe button was clicked, the SwipeButtonEventArgs object is passed to the event as its argument, and the command - as its parameter.

See Also