![]() |
Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Controls Assembly > Leadtools.Controls Namespace : ImageViewerFloaterInteractiveMode Class |
public class ImageViewerFloaterInteractiveMode : ImageViewerPanZoomInteractiveMode
'Declaration
Public Class ImageViewerFloaterInteractiveMode Inherits ImageViewerPanZoomInteractiveMode
ImageViewerFloaterInteractiveMode derives from ImageViewerPanZoomInteractiveMode and allows the user to click and drag on the floater (if any) to pan it around the image. If ImageViewerPanZoomInteractiveMode was setup to enable zooming, then the user can perform that action (CTRL-click by default or multi-touch pinch gesture) to scale the floater image as well.
The user can control how the floater is rendered while it is being moved or scaled using FloaterRegionRenderMode and FloaterOpacity.
For more information, refer to Image Viewer Interactive Modes.
Imports Leadtools Imports Leadtools.Controls Imports Leadtools.Codecs Imports Leadtools.Drawing Imports Leadtools.ImageProcessing Imports Leadtools.ImageProcessing.Color _imageViewer.InteractiveModes.BeginUpdate() Dim mode As New ImageViewerFloaterInteractiveMode mode.ZoomKeyModifier = Keys.None mode.IsEnabled = True mode.FloaterOpacity = 0.5 _imageViewer.InteractiveModes.Add(mode) _imageViewer.InteractiveModes.EndUpdate()
using Leadtools; using Leadtools.Controls; using Leadtools.Codecs; using Leadtools.Drawing; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Color; _imageViewer.InteractiveModes.BeginUpdate(); _imageViewer.InteractiveModes.Add(new ImageViewerFloaterInteractiveMode { ZoomKeyModifier = Keys.None, IsEnabled = true, FloaterOpacity = 0.5 }); _imageViewer.InteractiveModes.EndUpdate();