DragEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Represents the method that will handle the DragDrop, DragEnter, or DragOver event of a Control.
- C#
- VB.NET
public delegate void DragEventHandler(Object sender, DragEventArgs e)
Public Delegate Sub DragEventHandler(ByVal sender As [Object], ByVal e As DragEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | DragEventArgs | A DragEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| Control.DragDrop | Fired when a drag-and-drop operation is completed. |
| Control.DragEnter | Fired when an object is dragged into the control's bounds. |
| Control.DragOver | Fired when an object is dragged over the control's bounds. |
| IDropTarget.DragEnter | Fired when an object is dragged into the control's bounds. |
| IDropTarget.DragDrop | Fired when a drag-and-drop operation is completed. |
| IDropTarget.DragOver | Fired when an object is dragged over the control's bounds. |