GcSpread.Sheets Namespace : CommentState Enumeration |
Member | Description |
---|---|
Active | Specifies that the comment is in an active state. |
Edit | Specifies that the comment is in an edit state. |
Normal | Specifies that the comment is in a normal state. |
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());
Object
GcSpread.Sheets.CommentState