Spread.Sheets Documentation
PictureChanged Event
The sheet that triggered the event.
The sheet's name.
The picture that triggered the event.
The name of the picture's property that has changed.
Occurs when any picture has changed.
Syntax
var instance; // Type: Events
instance.PictureChanged = function(sheet, sheetName, picture, propertyName) { };
PictureChanged = function ( 
   sheet : Worksheet,
   sheetName : string,
   picture : Picture,
   propertyName : string
) { };

Parameters

sheet
The sheet that triggered the event.
sheetName
The sheet's name.
picture
The picture that triggered the event.
propertyName
The name of the picture's property that has changed.
Example
This example uses the PictureChanged event.
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);
});
See Also

Reference

Events type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.