Skip to main content

GridControl.PullToRefresh Event

Occurs when an end-user pulls the grid down to refresh its content.

Namespace: DevExpress.Mobile.DataGrid

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

Declaration

public event EventHandler PullToRefresh

Event Data

The PullToRefresh event's data class is EventArgs.

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 GridControl‘s pull-to-refresh feature allows end-users to request a grid content update with the pull-down gesture.

PullToRefresh_iOS

To enable this functionality, set the GridControl.IsPullToRefreshEnabled property to true. Then, either handle the PullToRefresh event, or define a refresh command in a view model and bind it to the grid using the GridControl.PullToRefreshCommand property.

See Also