# DragDrop

### Properties

| Properties             | Description                  |
| ---------------------- | ---------------------------- |
| allowDrop(value: bool) | Sets the AllowDrop property. |

### Events

| Properties                             | Description                                                            |
| -------------------------------------- | ---------------------------------------------------------------------- |
| onDragEnter(fn: DragEventArgs -> 'msg) | Raised when a drag-and-drop operation enters the element.              |
| onDragLeave(fn: DragEventArgs -> 'msg) | Raised when a drag-and-drop operation leaves the element.              |
| onDragOver(fn: DragEventArgs -> 'msg)  | Raised when a drag-and-drop operation is in progress over the element. |
| onDrop(fn: DragEventArgs -> 'msg)      | Raised when a drag-and-drop operation is dropped on the element.       |
