Gets or sets the value that controls user interaction with the control's display.
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)
}
The value which controls the user interaction with the control's display.
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.
This sample changes between interactive modes -- from none, to pan, to magnifying glass, to Region, and back to none.
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);
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document