SpreadJS Documentation
floatingObjects Field
GC.Spread.Sheets Namespace > Worksheet type : floatingObjects Field
FloatingObject manager for the sheet.
Syntax
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: FloatingObjectCollection
value = instance.floatingObjects;
var floatingObjects : FloatingObjectCollection;
Example
This example creates a floating object.
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);
See Also

Reference

Worksheet type