var instance; // Type: Events instance.ShapeRemoved = function(sheet, sheetName, shape) { };
パラメータ
- sheet
- イベントを発生させたシート。
- sheetName
- シートの名前。
- shape
- 削除されたシェイプ。
var instance; // Type: Events instance.ShapeRemoved = function(sheet, sheetName, shape) { };
//次のサンプルコードは、ShapeRemovedイベントを使用します。 var shape = activeSheet.shapes.add("myShape", GC.Spread.Sheets.Shapes.AutoShapeType.diamond, 0, 90, 200, 200); activeSheet.bind(GC.Spread.Sheets.Events.ShapeRemoved, function (e, info) { alert(info.shape.name()); });