GcSpread.Sheets Namespace > FloatingObject class : allowMove Method |
var instance = new GcSpread.Sheets.FloatingObject(name, x, y, width, height); var returnValue; // Type: boolean returnValue = instance.allowMove(value);
function allowMove( value : boolean ) : 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.allowResize(false); customFloatingObject.allowMove(false); customFloatingObject.Content(btn); activeSheet.addFloatingObject(customFloatingObject);