Spread.Sheets Documentation
CommentRemoved type
GC.Spread.Sheets.Events Namespace : CommentRemoved type
Occurs when the user has removed the comment.
Example
//This example uses the CommentRemoved event.
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.CommentRemoved, function (e, info) {
       console.log("sheet name: " + info.sheetName);
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.CommentRemoved

See Also

Reference

GC.Spread.Sheets.Events Namespace