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

パラメータ

value
コメントのフォントスタイル。

戻り値の型

値が設定されていない場合は、コメントのフォントスタイルを返します。値が設定されている場合は、コメントを返します。
使用例
次のサンプルコードは、fontStyleメソッドを使用します。
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);
comment.fontFamily("Comic Sans MS");
comment.fontStyle("normal");
comment.fontWeight("normal");
activeSheet.getCell(5,5).comment(comment);
関連トピック

参照

Comment クラス