←Select platform

ImageViewerAutoPanInteractiveMode Class

Summary

Automatically pans the view when the mouse or touch is next to the edge.

Syntax

C#
VB
C++
public class ImageViewerAutoPanInteractiveMode : ImageViewerInteractiveMode 
Public Class ImageViewerAutoPanInteractiveMode 
   Inherits ImageViewerInteractiveMode 
public ref class ImageViewerAutoPanInteractiveMode : ImageViewerInteractiveMode 

Remarks

ImageViewerAutoPanInteractiveMode derives from ImageViewerInteractiveMode and subscribes to the following events of the InteractiveService:

ImageViewerAutoPanInteractiveMode works when the view boundary is larger than the current image viewer client area as follows:

  • When the mouse or touch is close to the edge of the viewer, and there are more room in that direction, then this mode will call ImageViewer.ScrollByRestrict to pan the view in that direction. How far the pointer is from the boundary to be consider "close" is determined by EdgeSize. The delay before auto-panning starts is controlled by BeginDelay.

  • If the user does not move the pointer, and PanDelay elapsed, then this mode will continue panning the viewer in that direction until it reaches the maximum value allowed by ScrollByRestrict.

ImageViewerAutoPanInteractiveMode can work with or without the user holding a mouse button down through the value of MouseButtons. It can also be combined with any other mode to allow auto-panning the viewer while the other mode is running because it: * does not set InteractiveEventArgs.IsHandled to true when working

  • relies on the Move event instead of DragDelta, which is more common

The example code shows how to use auto-pan with ImageViewerRubberBandInteractiveMode to allow drawing a rubber band and moving towards the edge of the viewer when the user reaches the edge. This is the auto-pan performing extra functionality to rubber-band.

For more information, refer to Image Viewer Interactive Modes.

Example

C#
VB
using Leadtools; 
using Leadtools.Controls; 
using Leadtools.Codecs; 
using Leadtools.Drawing; 
using LeadtoolsExamples.Common; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
 
_imageViewer.InteractiveModes.BeginUpdate(); 
var autopan = new ImageViewerAutoPanInteractiveMode(); 
autopan.PanDelay = 100; 
_imageViewer.InteractiveModes.Add(autopan); 
_imageViewer.InteractiveModes.EndUpdate(); 
Imports Leadtools 
Imports Leadtools.Controls 
Imports Leadtools.Codecs 
Imports Leadtools.Drawing 
Imports Leadtools.ImageProcessing 
Imports Leadtools.ImageProcessing.Color 
 
_imageViewer.InteractiveModes.BeginUpdate() 
Dim autopan As New ImageViewerAutoPanInteractiveMode() 
autopan.PanDelay = 100 
_imageViewer.InteractiveModes.Add(autopan) 
_imageViewer.InteractiveModes.EndUpdate() 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls.WinForms Assembly