[]
        
(Showing Draft Content)

GC.Spread.Sheets.Theme

クラス: Theme

Spread.Sheets.Theme

Table of contents

コンストラクタ

メソッド

コンストラクタ

constructor

new Theme(name, colorScheme, headerFont, bodyFont)

カラースキームを表します。

実例

// 次のサンプルコードは、新しいSpreadThemeオブジェクトを作成します。
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);
])

パラメータ

名前 説明
name string テーマの名前。
colorScheme ColorScheme テーマカラーの基本色。
headerFont string 見出しフォントの名前。
bodyFont string 本文フォントの名前。

メソッド

bodyFont

bodyFont(value?): any

テーマの本文フォントを取得または設定します。

パラメータ

名前 説明
value? string 本文フォント。

戻り値

any

値が設定されていない場合は、本文フォントを返します。値が設定されている場合は、テーマを返します。


colors

colors(value?): any

テーマの基本色を取得または設定します。

パラメータ

名前 説明
value? ColorScheme テーマの基本色。

戻り値

any

値が設定されていない場合は、テーマの基本色を返します。値が設定されている場合は、テーマを返します。


headerFont

headerFont(value?): any

テーマの見出しフォントを取得または設定します。

パラメータ

名前 説明
value? string 見出しフォント。

戻り値

any

値が設定されていない場合は、見出しフォントを返します。値が設定されている場合は、テーマを返します。


name

name(value?): any

テーマの名前を取得または設定します。

パラメータ

名前 説明
value? string テーマ名。

戻り値

any

値が設定されていない場合は、テーマ名を返します。値が設定されている場合は、テーマを返します。