ブロックする >テーマ >(コンストラクタ)

Theme.(constructor)

Theme クラスの新しいインスタンスを作成します。

署名:

constructor(name: string, opt_blockStyles?: {
        [key: string]: Partial<BlockStyle>;
    }, opt_categoryStyles?: {
        [key: string]: CategoryStyle;
    }, opt_componentStyles?: ComponentStyle);

パラメータ

パラメータ 説明
name 文字列 テーマ名。
opt_blockStyles { [key: string]: Partial<BlockStyle>;} (省略可)スタイル名(文字列)からブロックのスタイル属性を持つオブジェクトへのマップ。
opt_categoryStyles { [キー: 文字列]: CategoryStyle;} (省略可)スタイル名(文字列)からカテゴリのスタイル属性を持つオブジェクトへのマップ。
opt_componentStyles ComponentStyle (省略可)Blockly コンポーネント名とスタイル値のマッピング。