Spread.Sheets Documentation
FloatingObjectRemoved Event
The sheet that triggered the event.
The sheet's name.
The floating object has been removed.
Occurs when the user has removed the floating object.
Syntax
var instance; // Type: Events
instance.FloatingObjectRemoved = function(sheet, sheetName, floatingObject) { };
FloatingObjectRemoved = function ( 
   sheet : Worksheet,
   sheetName : string,
   floatingObject : FloatingObject
) { };

Parameters

sheet
The sheet that triggered the event.
sheetName
The sheet's name.
floatingObject
The floating object has been removed.
Example
This example uses the FloatingObjectRemoved event.
var customFloatingObject = new GC.Spread.Sheets.FloatingObjects.FloatingObject("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.floatingObjects.add(customFloatingObject);

activeSheet.bind(GC.Spread.Sheets.Events.FloatingObjectRemoved, function (e, info) {    
        alert(info.sheetName);
});
See Also

Reference

Events type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.