GcSpread.Sheets Namespace > Events type : PictureChanged Event |
var instance; // Type: Events instance.PictureChanged = function(sheet, sheetName, picture, propertyName) { };
activeSheet.addPicture("f2","Event.png",2,2,6,6); activeSheet.addPicture("f1","tsoutline.png",3,0,6,6); // Use IE to see the console log text $("#spreadContainer").data("spread").getActiveSheet().bind(GcSpread.Sheets.Events.PictureChanged, function (e, info) { console.log("Sheet: " + info.sheetName); });
activeSheet.addPicture("f2","Event.png",2,2,6,6); activeSheet.addPicture("f1","tsoutline.png",3,0,6,6); // Use IE to see the console log text $("#spreadContainer").data("spread").getActiveSheet().bind(GcSpread.Sheets.Events.PictureChanged, function (e, info) { console.log("Property: " + info.propertyName); });