GC.Spread.Sheets 名前空間 > Events タイプ : UserZooming イベント |
Javascript (Usage) | |
---|---|
var instance; // Type: Events instance.UserZooming = function(sheet, sheetName, oldZoomFactor, newZoomFactor) { }; |
Javascript (Specification) | |
---|---|
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 + ")"); });