SpreadJS Documentation
CommentState Enumeration
Defines the comment state.
Members
MemberDescription
ActiveSpecifies that the comment is in an active state.
EditSpecifies that the comment is in an edit state.
NormalSpecifies that the comment is in a normal state.
Example
This example gets the comment 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());
Inheritance Hierarchy

Object
   GcSpread.Sheets.CommentState

See Also

Reference

GcSpread.Sheets Namespace

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.