GcSpread.Sheets Namespace > Comment class : commentState Method |
var instance = new GcSpread.Sheets.Comment(); var value; // Type: CommentState value = instance.commentState();
function commentState() : CommentState;
var comment = new GcSpread.Sheets.Comment(); comment.text("new comment!"); comment.backColor("yellow"); comment.foreColor("green"); comment.displayMode(GcSpread.Sheets.DisplayMode.AlwaysShown); activeSheet.setComment(5,5,comment); alert(comment.commentState());