var instance = new GC.Spread.Sheets.Shapes.ShapeCollection(sheet); var value; // Type: any value = instance.remove(name);
function remove( name : string ) : any;
Parameters
- name
- The name of the shape.
var instance = new GC.Spread.Sheets.Shapes.ShapeCollection(sheet); var value; // Type: any value = instance.remove(name);
function remove( name : string ) : any;
//This example shows how to remove a shape activeSheet.shapes.add("shape1", GC.Spread.Sheets.Shapes.AutoShapeType.heart, 100, 50, 100, 150); activeSheet.shapes.remove("shape1");