Spread.Sheets
commandManager メソッド
GC.Spread.Sheets 名前空間 > Workbook タイプ : commandManager メソッド
コマンドマネージャを取得します。
シンタックス
var instance = new GC.Spread.Sheets.Workbook(host);
var value; // Type: CommandManager
value = instance.commandManager();
function commandManager() : CommandManager;

戻り値の型

コマンドマネージャ。
使用例
// 次のサンプルコードは、指定したアクションを行うコマンドを実行します。 spread.options.allowUndo = true; spread.commandManager().execute({cmd: "outlineRow", sheetName: "Sheet1", index: 3, count: 5});
This example executes a command that performs a specified action.
spread.options.allowUndo = true;
spread.commandManager().execute({cmd: "outlineRow", sheetName: "Sheet1", index: 3, count: 5});
関連トピック

参照

Workbook タイプ