Error processing SSI file
LEADTOOLS JavaScript (Leadtools.Controls)

AutoResetOptions Property

Show in webframe
Example 
Determines which display properties to reset when a new image is set into the viewer (single item mode).
Syntax
get_autoResetOptions();
set_autoResetOptions(value);
Object.defineProperty('autoResetOptions');

Property Value

TypeDescription
ImageViewerAutoResetOptionsValue that determines which display properties to reset when a new image is set into the viewer (single item mode). Default value is ImageViewerAutoResetOptions.All.
Remarks

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.

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:

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;
};
See Also

Reference

ImageViewer Object
ImageViewer Members

Error processing SSI file