GC.Spread.Sheets 名前空間 > Events タイプ : PictureChanged イベント |
Javascript (Usage) | |
---|---|
var instance; // Type: Events instance.PictureChanged = function(sheet, sheetName, picture, propertyName) { }; |
Javascript (Specification) | |
---|---|
PictureChanged = function ( sheet : Worksheet, sheetName : string, picture : Picture, propertyName : string ) { }; |
var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"),{sheetCount:3}); var activeSheet = spread.getActiveSheet(); activeSheet.pictures.add("f2","Event.png",2,2,6,6); activeSheet.pictures.add("f1","tsoutline.png",3,0,6,6); // Use IE to see the console log text activeSheet.bind(GC.Spread.Sheets.Events.PictureChanged, function (e, info) { console.log("Sheet: " + info.sheetName); });
var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"),{sheetCount:3}); var activeSheet = spread.getActiveSheet(); activeSheet.pictures.add("f2","Event.png",2,2,6,6); activeSheet.pictures.add("f1","tsoutline.png",3,0,6,6); // Use IE to see the console log text activeSheet.bind(GC.Spread.Sheets.Events.PictureChanged, function (e, info) { console.log("Property: " + info.propertyName); });