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

Parameters

value
The value that indicates whether this shape is visible.

Return Value

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

Reference

ShapeBase type