SpreadJS製品ヘルプ
commentState メソッド
GC.Spread.Sheets.Comments 名前空間 > Comment クラス : commentState メソッド
コメントの状態。
コメントの状態を取得または設定します。
シンタックス
var instance = new GC.Spread.Sheets.Comments.Comment(text);
var returnValue; // Type: any
returnValue = instance.commentState(value);
function commentState( 
   value : CommentState
) : any;

パラメータ

value
コメントの状態。

戻り値の型

値が設定されていない場合は、コメントの状態を返します。値が設定されている場合は、コメントを返します。
使用例
次のサンプルコードは、コメントの状態を取得します。
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());
関連トピック

参照

Comment クラス
SpreadJS~GC.Spread.Sheets.CommentState