SpreadJS製品ヘルプ
setConfig メソッド
GC.Spread.Sheets.Designer 名前空間 > Designer タイプ : setConfig メソッド
デザイナの構成オブジェクト。
カスタム構成を使用する新しいデザイナを表します。
シンタックス
var instance = new GC.Spread.Sheets.Designer.Designer(host, config, spread, spreadOptions);
var value; // Type: any
value = instance.setConfig(config);
function setConfig( 
   config : Object
) : any;

パラメータ

config
デザイナの構成オブジェクト。
使用例
// このサンプルコードは、カスタム構成を既存のデザイナに設定します
var designer = new GC.Spread.Sheets.Designer.Designer(document.getElementById("hostDiv"));
var config = {
      ribbon: [
          {
              id: "home",
              text: "HOME",
              buttonGroups: [
                {
                  label: "Undo",
                  thumbnailClass: "ribbon-thumbnail-undoRedo",
                  commandGroup: {
                    children: [
                      {
                        direction: "vertical",
                        commands: [
                          "undo",
                          "redo"
                        ]
                      }
                    ]
                  }
                }
              ]
          }
      ],
      contextMenu: [
          "contextMenuCut",
          "contextMenuCopy",
      ],
      fileMenu: "fileMenuButton",
      sidePanels: [
          {
              position: "top",
              allowResize: true,
              command: "formulaBarPanel",
              uiTemplate: "formulaBarTemplate"
          },
      ]
 };
designer.setConfig(config);
関連トピック

参照

Designer タイプ