ImageViewerActiveItemInteractiveMode Class (original) (raw)
Summary
Allows you to change the current active item in the viewer using the keyboard or mouse/touch.
Example
using Leadtools;
using Leadtools.Controls;
using Leadtools.Codecs;
using Leadtools.Drawing;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
public void ImageViewerActiveItemInteractiveModeExample()
{
_imageViewer.InteractiveModes.BeginUpdate();
_imageViewer.InteractiveModes.Add(new ImageViewerActiveItemInteractiveMode { IsHoverEnabled = true, IsKeyboardEnabled = true });
_imageViewer.InteractiveModes.EndUpdate();
}