Raised when a user stops dragging a resize box.

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

Syntax

C#
public event EventHandler<PreviewEvent<InteractorEventArgs>> PreviewResizeEnd
Visual Basic
Public Event PreviewResizeEnd As EventHandler(Of PreviewEvent(Of InteractorEventArgs))

Remarks

This event will be fired after a user has dragged a resize box, at the moment that the mouse button is released. At that point the Transform property of the interactor will correspond to the new position, but the underlying object (annotation, page, etc.) will not yet have been adjusted to this new position. If this event gets cancelled, the interactor transform will be restored to its orginal value, and the object will remain where it is. If the event does not get cancelled, the object will be repositioned to match the transform.

See Also