GcSpread.Sheets Namespace > Events type : CommentRemoved Event |
var instance; // Type: Events instance.CommentRemoved = function(sheet, sheetName, comment) { };
var comment = new GcSpread.Sheets.Comment(); comment.text("new comment!"); comment.backColor("orange"); comment.displayMode(GcSpread.Sheets.DisplayMode.AlwaysShown); activeSheet.setComment(5,5,comment); $("#spreadContainer").data("spread").getActiveSheet().bind(GcSpread.Sheets.Events.CommentRemoved, function (e, info) { console.log("sheet name: " + info.sheetName); });