GC.Spread.Sheets 名前空間 > Events タイプ : CommentRemoving イベント |
Javascript (Usage) | |
---|---|
var instance; // Type: Events instance.CommentRemoving = function(sheet, sheetName, comment, cancel) { }; |
Javascript (Specification) | |
---|---|
CommentRemoving = function ( sheet : Worksheet, sheetName : string, comment : Comment, cancel : boolean ) { }; |
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; });