LEADTOOLS WPF and Silverlight (Leadtools.Windows.Controls assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
InteractiveMode Enumeration
See Also  
Leadtools.Windows.Controls Namespace : InteractiveMode Enumeration



Values for the ImageViewer.InteractiveMode property. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public Enum InteractiveMode 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As InteractiveMode
C# 
public enum InteractiveMode : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
public enum class InteractiveMode : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
CenterAt

Centers the image at the mouse coordinates for the last user click. The ImageViewer.InteractiveCenterAt event will fire one or more times during this mode with the current locations and status of the operation.

In this mode, the control will position the scrollbars according to user cursor clicks, therefore, this mode is only functional if the control has visible scrollbars (SizeMode is SizeMode.Normal or SizeMode.FitWidth and the viewport is less than the image size).

MagnifyGlass

Starts the MagnifyGlass. The ImageViewer.InteractiveMagnifyGlass event will fire one or more times during this mode with the current locations and status of the operation.

None

Default, no user interaction.

Pan

Allows the user to pan the image using the cursor. The ImageViewer.InteractivePan event will fire one or more times during this mode with the current locations and status of the operation.

In this mode, the control will position the scrollbars according to user cursor moves, therefore, this mode is only functional if the control has visible scrollbars (SizeMode is SizeMode.Normal or SizeMode.FitWidth and the viewport is less than the image size).

Scale

Allows the user to change the current scale factor of the image using the mouse. The ImageViewer.InteractiveScale event will fire one or more times during this mode with the current locations and status of the operation.

UserRectangle

User-defined rectangle. You should subscribe to the ImageViewer.InteractiveUserRectangle event to add your custom code to handle the rectangle drawn.

ZoomTo

Zooms the image to the rectangle created by the user. The ImageViewer.InteractiveZoomTo event will fire one or more times during this mode with the current locations and status of the operation.

Example

For XAML example, refer to ImageViewer.InteractiveMode.

For C#/VB examples, refer to ImageViewer.InteractiveMode.

Remarks

The ImageViewer and RasterImageViewer supports many interactive modes for user interaction with the cursor. To enable any of the interactive modes, set the ImageViewer.InteractiveMode property to any of the InteractiveMode enumeration members. Subsequent cursor down, move and up operations will be captured by the control to perform the required interactive mode.

Various events will occur during the interactive modes to allow you to get information, alter values, or cancel the operation all together.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Windows.Controls.InteractiveMode

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also