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
Declaration
Event Data
The ItemDrop event's data class is ItemDropEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
GroupColumnValue | Gets the value of the current group (the TileViewColumns.GroupColumn‘s value) to which the tile has been dropped. |
ListSourceRowIndex | Gets the tile’s index in the data source. |
PrevGroupColumnValue | Gets the value of the group (the TileViewColumns.GroupColumn‘s value) from which the tile was originally dragged. |
PrevListSourceRowIndex | Gets the tile’s previous index in the data source. |
RowHandle | 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.
See Also