Invoked after the user has dragged this interactor.

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

Syntax

C#
protected virtual void OnDragEnd(
	DragDropEventArgs args
)
Visual Basic
Protected Overridable Sub OnDragEnd ( _
	args As DragDropEventArgs _
)

Parameters

args
Type: TallComponents.Interaction.WinForms.Events..::..DragDropEventArgs
The DragDrop event data.

Remarks

This method will be invoked before issuing OnDragDrop on the target interactor. The Effect property of the event args indicates the type of operation that the drop target has accepted/performed. Dragged interactor may remove themselves from the DraggedInteractors collection of the event so that the subsequent OnDragDrop invocation on the target does not encounter them.

See Also