DragEventHandler Delegate
Identifies the method handling the dragDrop, dragEnter, dragLeave, or dragOver event of a Control control.
package com.ms.wfc.ui
public multicast delegate
void DragEventHandler( Objectsender**, DragEvent** e );
Remarks
The syntax of the DragEventHandler delegate specifies the signature for the event handler, where sender is the source of the event and e is a DragEvent object that provides the event data.
When you create a DragEventHandler delegate, you specify the method that will handle the event. Once the delegate is assigned to the event, the handler method is automatically invoked whenever the event is triggered.