Skip to main content
Version: 3.5

DragEventHandler

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents the method that will handle the DragDrop, DragEnter, or DragOver event of a Control.

public delegate void DragEventHandler(Object sender, DragEventArgs e)

Parameters

NameTypeDescription
senderObjectThe source of the event.
eDragEventArgsA DragEventArgs that contains the event data.

Fired By

NameDescription
Control.DragDropFired when a drag-and-drop operation is completed.
Control.DragEnterFired when an object is dragged into the control's bounds.
Control.DragOverFired when an object is dragged over the control's bounds.
IDropTarget.DragEnterFired when an object is dragged into the control's bounds.
IDropTarget.DragDropFired when a drag-and-drop operation is completed.
IDropTarget.DragOverFired when an object is dragged over the control's bounds.