那麽可以使用undo和redo這兩個命令,如下代碼所示,只需將其中的參數sheetName修改爲目標sheet的名稱即可:
- // 撤銷
- spread.commandManager().execute({cmd: "undo", sheetName: "Sheet1"});
- // 恢復
- spread.commandManager().execute({cmd: "redo", sheetName: "Sheet1"});
复制代码
可以參考官網API文檔瞭解詳情:
undo--https://demo.grapecity.com.cn/sp ... heets.Commands#undo
redo--https://demo.grapecity.com.cn/sp ... heets.Commands#redo |