[]
コメントの状態を定義します。
実例
// 次のサンプルコードは、コメントの状態を取得します。
var comment = new GC.Spread.Sheets.Comments.Comment();
comment.text("new comment!");
comment.backColor("yellow");
comment.foreColor("green");
comment.displayMode(GC.Spread.Sheets.Comments.DisplayMode.alwaysShown);
activeSheet.getCell(5,5).comment(comment);
alert(comment.commentState());
• active = 1
コメントがアクティブな状態にあることを指定します。
• edit = 2
コメントが編集状態にあることを指定します。
• normal = 3
コメントが通常の状態にあることを指定します。