Error processing SSI file
(Leadtools.Controls)

LEADTOOLS SDK Help   |       |    Show Table of Contents    |   

ImageViewerAutoPanInteractiveMode Class




Members 
Automatically pans the view when the mouse or touch is next to the edge.
Object Model
Syntax
public class ImageViewerAutoPanInteractiveMode : ImageViewerInteractiveMode 
'Declaration
 
Public Class ImageViewerAutoPanInteractiveMode 
   Inherits 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:

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. 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
 
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()
using Leadtools;
using Leadtools.Controls;
using Leadtools.Codecs;
using Leadtools.Drawing;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;

_imageViewer.InteractiveModes.BeginUpdate();
var autopan = new ImageViewerAutoPanInteractiveMode();
autopan.PanDelay = 100;
_imageViewer.InteractiveModes.Add(autopan);
_imageViewer.InteractiveModes.EndUpdate();
Requirements

Target Platforms

See Also

Reference

ImageViewerAutoPanInteractiveMode Members
Leadtools.Controls Namespace

Error processing SSI file