SpreadJS Documentation
GC.Spread.Sheets.Shapes Namespace / ShapeBase type / isLocked Method
The value that indicates whether this shape is locked.
In This Topic
    isLocked Method
    In This Topic
    Gets or sets whether this shape is locked.
    Syntax
    var instance = new GC.Spread.Sheets.Shapes.ShapeBase();
    var returnValue; // Type: any
    returnValue = instance.isLocked(value);
    function isLocked( 
       value : boolean
    ) : any;

    Parameters

    value
    The value that indicates whether this shape is locked.

    Return Value

    If no value is set, returns whether this shape is locked.
    Example
    var heart = sheet.shapes.add("Shape1", GC.Spread.Sheets.Shapes.AutoShapeType.heart, 100, 60, 200, 160);
    var state = heart.isLocked();
    heart.isLocked(!state);
    See Also

    Reference

    ShapeBase type