InteractiveMode Property

Summary

Gets or sets the value that controls user interaction with the control's display.

Syntax

C#
C++/CLI
C++
public virtual RasterViewerInteractiveMode InteractiveMode { get; set; } 
public: 
virtual property RasterViewerInteractiveMode InteractiveMode { 
   RasterViewerInteractiveMode get(); 
   void set (    RasterViewerInteractiveMode ); 
} 
public:  
   virtual property RasterViewerInteractiveMode^ InteractiveMode 
   { 
      RasterViewerInteractiveMode^ get() 
      void set(RasterViewerInteractiveMode^ value) 
   } 

Property Value

The value which controls the user interaction with the control's display.

Remarks

By default, the mouse left button starts and controls the interactive mode. To change this behavior, refer to InteractiveModeMouseButton.

You can change the mouse cursor associated with a particular interative mode with the SetInteractiveModeCursor method.

Example

This sample changes between interactive modes -- from none, to pan, to magnifying glass, to Region, and back to none.

C#
using Leadtools.WinForms; 
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Drawing; 
 
private void viewer_InteractiveModeChanged(object sender, EventArgs e) 
{ 
   RasterImageViewer viewer = sender as RasterImageViewer; 
   string s = string.Format("InteractiveMode changed to: {0}", viewer.InteractiveMode.ToString()); 
   MessageBox.Show(s); 
} 
 
public void RasterImageViewer_InteractiveMode(RasterImageViewer viewer) 
{ 
   viewer.InteractiveModeChanged += new EventHandler(viewer_InteractiveModeChanged); 
   viewer.InteractivePan += new EventHandler<RasterViewerLineEventArgs>(viewer_InteractivePan); 
 
   viewer.InteractiveRegionType = RasterViewerInteractiveRegionType.Ellipse; 
   viewer.InteractiveRegionCombineMode = RasterRegionCombineMode.Set; 
 
   switch (viewer.InteractiveMode) 
   { 
      case RasterViewerInteractiveMode.None: 
         viewer.InteractiveMode = RasterViewerInteractiveMode.Pan; 
         break; 
 
      case RasterViewerInteractiveMode.Pan: 
         viewer.InteractiveMode = RasterViewerInteractiveMode.MagnifyGlass; 
         break; 
 
      case RasterViewerInteractiveMode.MagnifyGlass: 
         viewer.InteractiveMode = RasterViewerInteractiveMode.Region; 
         break; 
 
      case RasterViewerInteractiveMode.Region: 
         viewer.InteractiveMode = RasterViewerInteractiveMode.None; 
         break; 
   } 
   viewer.InteractiveModeChanged -= new EventHandler(viewer_InteractiveModeChanged); 
} 

Requirements

Target Platforms

See Also

Reference

RasterImageViewer Class

RasterImageViewer Members

Help Version 22.0.2023.2.9
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.WinForms Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.