JavaScript
A5.ViewBoxdestroy Method
Syntax
A5.ViewBox.destroy()
Description
Destroy the view box. This method should be called before the view box is removed from the DOM.
Example
// To get a pointer to the A5.ViewBox class see {dialog.object}.getControl // assume vbObj is a pointer to an instance of the A5.ViewBox class vbObj.destroy(); delete vbObj;