AutoResetOptions Property (original) (raw)
Summary
Determines which display properties to reset when a new image is set into the viewer (single item mode).
Syntax
Property Value
Value that determines which display properties to reset when a new image is set into the viewer (single item mode). Default value is ImageViewerAutoResetOptions.All.
Example
Run the demo and click the Example button. The image will be zoomed (its scale factor and scroll offset will be changed) to a certain value. Then the viewer will use AutoResetOptions to not change these values when a new image is set.
Start with the ImageViewer example, remove all the code inside the example function (search for the "// TODO: add example code here" comment) and insert the following code:
using Leadtools;
using Leadtools.Controls;
using Leadtools.Codecs;
using Leadtools.Drawing;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
public void ImageViewerAutoResetOptions_Example(RasterImage image)
{
ImageViewerAutoResetOptions options = _imageViewer.AutoResetOptions; // save
_imageViewer.AutoResetOptions = ImageViewerAutoResetOptions.None;
_imageViewer.Image = image;
_imageViewer.AutoResetOptions = options;
}