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