Implements panning.

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

Syntax

C#
protected override void OnMouseMove(
	MouseEventArgs args
)
Visual Basic
Protected Overrides Sub OnMouseMove ( _
	args As MouseEventArgs _
)

Remarks

To avoid panning, one can either set IsInteractive to false, or override this method, or subscribe to the preview event and cancel the mouse move events. In the latter case, no interactor below this one will receive the mouse move event either.

See Also