SpreadJS Documentation
fontFamily Method
GC.Spread.Sheets.Comments Namespace > Comment class : fontFamily Method
The font family for the comment.
Gets or sets the font family for the comment.
Syntax
var instance = new GC.Spread.Sheets.Comments.Comment(text);
var returnValue; // Type: any
returnValue = instance.fontFamily(value);
function fontFamily( 
   value : string
) : any;

Parameters

value
The font family for the comment.

Return Value

If no value is set, returns the font family for the comment; otherwise, returns the comment.
Example
This example uses the fontFamily method.
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.fontSize("10pt");
activeSheet.getCell(5,5).comment(comment);
See Also

Reference

Comment class