[]
        
(Showing Draft Content)

GC.Spread.Sheets.Comments.CommentState

列挙型: CommentState

Sheets.Comments.CommentState

コメントの状態を定義します。

実例

// 次のサンプルコードは、コメントの状態を取得します。
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());

Table of contents

Enumeration members

Enumeration members

active

active = 1

コメントがアクティブな状態にあることを指定します。


edit

edit = 2

コメントが編集状態にあることを指定します。


normal

normal = 3

コメントが通常の状態にあることを指定します。