DXCollectionView.DropItem Event
In This Article
Occurs when a user drops an item.
Namespace: DevExpress.XamarinForms.CollectionView
Assembly: DevExpress.XamarinForms.CollectionView.dll
NuGet Package: DevExpress.XamarinForms.CollectionView
#Declaration
C#
public event EventHandler<DropItemEventArgs> DropItem
#Event Data
The DropItem event's data class is DropItemEventArgs. The following properties provide information specific to this event:
Property |
---|
Allow |
Drag |
Drop |
Drop |
Item |
#Remarks
You can prevent items from being dropped in specific positions. In this case, a place for the item drop is allocated, but the item returns to its initial position when it is released.
See Also