Raises the DragOver 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 OnDragOver(
	DragEventArgs drgevent
)
Visual Basic
Protected Overrides Sub OnDragOver ( _
	drgevent As DragEventArgs _
)

Parameters

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

Remarks

The interactor that the mouse hovers over determines the effect that this method returns. Overriding OnDragOver or subscribing to the DragOver event is not sufficient if you want to avoid the interactor dragover processing completely. Instead, please subscribe to the PreviewDragOver event and set the cancel flag. If you also want to avoid DragDrop processing, please see OnDragDrop.

See Also