SpreadJS Documentation
GC.Spread.Sheets Namespace / Style class / themeFont Field
In This Topic
    themeFont Field
    In This Topic
    Indicates the font theme.
    Syntax
    var instance = new GC.Spread.Sheets.Style(backColor,
                                             foreColor,
                                             hAlign,
                                             vAlign,
                                             font,
                                             themeFont,
                                             formatter,
                                             borderLeft,
                                             borderTop,
                                             borderRight,
                                             borderBottom,
                                             diagonalDown,
                                             diagonalUp,
                                             locked,
                                             textIndent,
                                             wordWrap,
                                             shrinkToFit,
                                             backgroundImage,
                                             cellType,
                                             backgroundImageLayout,
                                             tabStop,
                                             textDecoration,
                                             imeMode,
                                             name,
                                             parentName,
                                             watermark,
                                             cellPadding,
                                             labelOptions,
                                             labelOptions.alignment,
                                             labelOptions.visibility,
                                             labelOptions.font,
                                             labelOptions.foreColor,
                                             labelOptions.margin,
                                             isVerticalText,
                                             textOrientation);
    var value; // Type: string
    value = instance.themeFont;
    var themeFont : string;
    Example
    This example uses the themeFont property.
    var style = new GC.Spread.Sheets.Style();
    style.formatter = "0.000%";
    style.themeFont = "Body";
    activeSheet.setStyle(1,1,style,GC.Spread.Sheets.SheetArea.viewport);
    activeSheet.getCell(1,1).value("11");
    See Also

    Reference

    Style class