Destroys this ImageViewer and removes it from the page.
ImageViewer.prototype.dispose = function()
dispose(): void;
ImageViewer will add HTML elements to the page and subscribe to multiple JavaScript events. If your application involves adding and removing ImageViewer objects from the page, then you must call the Dispose method to remove the object from the page and clean up any resources being used.
Run the example. When you click the Example button, the viewer will be removed.
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_Dispose() {
var createOptions = new lt.Controls.ImageViewerCreateOptions(imageViewerDiv2);
var myViewer = new lt.Controls.ImageViewer(createOptions);
myViewer.image = this._imageViewer.image;
/// ...
/// put your code here ...
/// ...
myViewer.dispose();
};
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET