GcSpread.Sheets Namespace > Sheet type : removePicture Method |
var instance = new GcSpread.Sheets.Sheet(name); var value; // Type: any value = instance.removePicture(name);
function removePicture( name : string ) : any;
<input type="button" id="button1" value="button1"/> activeSheet.addPicture("f2","tsoutline.png",2,2,6,6); $("#button1").click(function () { activeSheet.isPaintSuspended(false); activeSheet.removePicture("f2"); activeSheet.repaint(); });