Leadtools.Controls Namespace > ImageViewer Object : AutoResetOptions Property |
get_autoResetOptions();
set_autoResetOptions(value);
Object.defineProperty('autoResetOptions');
Type | Description |
---|---|
ImageViewerAutoResetOptions | 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. |
Use this property to control which of the display properties of the controls resets back to its default value when a new image is set into the ImageUrl, Image or Canvas properties or when the user changes ImageSize directly.
The viewer will call Reset to perfrom the reseting of the values.
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:
function ImageViewer_AutoResetOptions(image) { var options = this._imageViewer.autoResetOptions; // save this._imageViewer.autoResetOptions = lt.Controls.ImageViewerAutoResetOptions.none; this._imageViewer.image = image; this._imageViewer.autoResetOptions = options; };