GC.Spread.Sheets Namespace > Events type : UserZooming Event |
var instance; // Type: Events instance.UserZooming = function(sheet, sheetName, oldZoomFactor, newZoomFactor) { };
UserZooming = function ( sheet : Worksheet, sheetName : string, oldZoomFactor : number, newZoomFactor : number ) { };
spread.options.allowUserZoom = true; activeSheet.bind(GC.Spread.Sheets.Events.UserZooming, function (e, info) { alert("Zoom (" + info.newZoomFactor + ")"); });