Finds an interactive mode in the collection given its id.
public ImageViewerInteractiveMode FindById(
int id
)
public:
ImageViewerInteractiveMode^ FindById(
int id
)
id
ID to find
The interactive mode found if any, null otherwise.
This method will iterate through all the items in the collection and return the mode where Id is equal to id. If no such mode is found then it will return null.
using Leadtools;
using Leadtools.Controls;
using Leadtools.Codecs;
using Leadtools.Drawing;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
public void ImageViewerInteractiveModesFindById_Example()
{
ImageViewerPanZoomInteractiveMode panZoom = _imageViewer.InteractiveModes.FindById(ImageViewerInteractiveMode.PanZoomModeId) as ImageViewerPanZoomInteractiveMode;
ControlInertiaScrollOptions inertiaOptions = panZoom.InertiaScrollOptions;
inertiaOptions.IsEnabled = true;
panZoom.InertiaScrollOptions = inertiaOptions;
}
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