Raises the DragDrop event and dispatches the event to the interactor that the mouse is over.

Namespace: TallComponents.Interaction.WinForms.Controls
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0

Syntax

C#
protected override void OnDragDrop(
	DragEventArgs drgevent
)
Visual Basic
Protected Overrides Sub OnDragDrop ( _
	drgevent As DragEventArgs _
)

Parameters

drgevent
Type: System.Windows.Forms..::..DragEventArgs
The drag event data.

Remarks

The interactor that the mouse is over determines the DragDrop processing. Overriding OnDragDrop or subscribing to the DragDrop event is not sufficcient if you want to avoid interactor dragdrop processing completely. Instead, please subscribe to the PreviewDragDrop event and set the cancel flag.

See Also