GcSpread.Sheets Namespace > Events type : FloatingObjectRemoving Event |
var instance; // Type: Events instance.FloatingObjectRemoving = function(sheet, sheetName, floatingObject, cancel) { };
FloatingObjectRemoving = function ( sheet : Sheet, sheetName : string, floatingObject : FloatingObject, cancel : boolean ) { };
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.FloatingObjectRemoving, function (e, info) { info.cancel = true; });