TileView.ItemDrop Event
Fires after a tile drop operation has been completed. This event does not fire when you enable drag-and-drop using Drag And Drop Behavior.
Namespace: DevExpress.XtraGrid.Views.Tile
Assembly: DevExpress.XtraGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
#Declaration
[DXCategory("Action")]
public event TileViewItemDropEventHandler ItemDrop
#Event Data
The ItemDrop event's data class is ItemDropEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Group |
Gets the value of the current group (the Tile |
List |
Gets the tile’s index in the data source. |
Prev |
Gets the value of the group (the Tile |
Prev |
Gets the tile’s previous index in the data source. |
Row |
Gets the row handle of the tile. |
#Remarks
Use the TileView.OptionsDragDrop.AllowDrag setting to enable the built-in tile drag-and-drop feature.
Handle the ItemDrop event to perform additional customization of a tile after it has been dropped. The event’s parameters allow you to identify the previous and current position of the tile and the underlying data record.