SpreadJS製品ヘルプ
CommentRemoving イベント
GC.Spread.Sheets 名前空間 > Events タイプ : CommentRemoving イベント
イベントを発生させたシート。
シートの名前。
削除されるコメント。
操作をキャンセルするかどうかを示す値。
ユーザーがいずれかのコメントを削除する前に発生します。
シンタックス
var instance; // Type: Events
instance.CommentRemoving = function(sheet, sheetName, comment, cancel) { };
CommentRemoving = function ( 
   sheet : Worksheet,
   sheetName : string,
   comment : Comment,
   cancel : boolean
) { };

パラメータ

sheet
イベントを発生させたシート。
sheetName
シートの名前。
comment
削除されるコメント。
cancel
操作をキャンセルするかどうかを示す値。
使用例
次のサンプルコードは、コメントが削除されないようにします。
var comment = new GC.Spread.Sheets.Comments.Comment();
comment.text("new comment!");
comment.backColor("orange");
comment.displayMode(GC.Spread.Sheets.Comments.DisplayMode.alwaysShown);
activeSheet.getCell(5,5).comment(comment);

activeSheet.bind(GC.Spread.Sheets.Events.CommentRemoving, function (e, info) {    
      info.cancel = true;
});
var comment = new GC.Spread.Sheets.Comments.Comment();
comment.text("new comment!");
comment.backColor("orange");
comment.displayMode(GC.Spread.Sheets.Comments.DisplayMode.alwaysShown);
activeSheet.getCell(5,5).comment(comment);

activeSheet.bind(GC.Spread.Sheets.Events.CommentRemoving, function (e, info) {    
      info.cancel = true;
});
関連トピック

参照

Events タイプ