fires after the user has zoomed a sheet
| newValue | number | the new zoom value |
| oldValue | number | the old zoom value |
| page | string | the name of the sheet |
$$("spsheet1").attachEvent("onZoom", function(newValue, oldValue, page){
// some code here
});
Back to top