Spread.Sheets
Theme コンストラクタ
テーマの名前。
テーマカラーの基本色。
見出しフォントの名前。
本文フォントの名前。
カラースキームを表します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Theme(name, colorScheme, headerFont, bodyFont);
Javascript (Specification) 
function Theme( 
   name : string,
   colorScheme : ColorScheme,
   headerFont : string,
   bodyFont : string
) : Theme;

パラメータ

name
テーマの名前。
colorScheme
テーマカラーの基本色。
headerFont
見出しフォントの名前。
bodyFont
本文フォントの名前。
使用例
This example creates a new SpreadTheme object.
sheet.getCell(0, 0).backColor("accent 1");
sheet.getCell(1, 0).backColor("accent 6");

$("#btn").click(function () {
    var custom = new GC.Spread.Sheets.Theme("Custom");
    custom.colors().accent1("red");
    custom.colors().accent6("green");
    sheet.currentTheme(custom);
})

関連トピック

参照

Theme クラス

 

 


© 2016-2018, GrapeCity inc. All rights reserved.