SpreadJS Documentation
allowMove Method
GC.Spread.Sheets.Shapes Namespace > ShapeBase type : allowMove Method
The setting for whether to disable moving the shape.
Gets or sets whether to disable moving the shape.
Syntax
var instance = new GC.Spread.Sheets.Shapes.ShapeBase();
var returnValue; // Type: any
returnValue = instance.allowMove(value);
function allowMove( 
   value : boolean
) : any;

Parameters

value
The setting for whether to disable moving the shape.

Return Value

If no value is set, returns the setting for whether to disable moving the shape.
Example
var heart = sheet.shapes.add("Shape1", GC.Spread.Sheets.Shapes.AutoShapeType.heart, 100, 60, 200, 160);
var state = heart.allowMove();
heart.allowMove(!state);
See Also

Reference

ShapeBase type