GcSpread.Sheets Namespace : DisplayMode Enumeration |
Member | Description |
---|---|
AlwaysShown | Specifies that the comment will always be displayed. |
HoverShown | Specifies that the comment will be displayed only when the pointer hovers over the comment's owner cell. |
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);
Object
GcSpread.Sheets.DisplayMode