GcSpread.Sheets Namespace > Events type : FloatingObjectRemoved Event |
var instance; // Type: Events instance.FloatingObjectRemoved = function(sheet, sheetName, floatingObject) { };
FloatingObjectRemoved = function ( sheet : Sheet, sheetName : string, floatingObject : FloatingObject ) { };
var customFloatingObject = new GcSpread.Sheets.CustomFloatingObject("f1", 10, 10, 60, 64); var btn = document.createElement('button'); btn.style.width = "60px"; btn.style.height = "30px"; btn.innerText = "button"; customFloatingObject.Content(btn); activeSheet.addFloatingObject(customFloatingObject); $("#spreadContainer").data("spread").getActiveSheet().bind(GcSpread.Sheets.Events.FloatingObjectRemoved, function (e, info) { alert(info.sheetName); });