SpreadJS製品ヘルプ
autoFitColumn フィールド
GC.Spread.Sheets 名前空間 > Commands タイプ : autoFitColumn フィールド
シートの列を自動的にサイズ変更するためのコマンドを表します。
シンタックス
var value; // Type: autoFitColumn
value = GC.Spread.Sheets.Commands.autoFitColumn;
var autoFitColumn : autoFitColumn;
使用例
次のサンプルコードは、列を自動的にサイズ変更します。
//Add data
for (var col = 1; col < 6; col++) {
    for (var row = 2; row < 11; row++) {
        activeSheet.setValue(row, col, row + col);
    }
}

$("#button1").click(function () {
var columns = [ { col: 3 } ];
spread.options.allowUndo = true;
spread.commandManager().execute({cmd: "autoFitColumn", sheetName: "Sheet1", columns: columns, rowHeader: false, autoFitType: GC.Spread.Sheets.AutoFitType.cell});
    });

<input type="button" id="button1" value="button1"/>
解説

CommandManagerクラスのexecuteメソッドを使用してコマンド実行する場合の引数は以下のとおりです。

関連トピック

参照

Commands タイプ