Spread.Sheets Documentation
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

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.