如下图,参考下方代码:
- spread.commandManager().execute({cmd: "dragDrop", sheetName: "Sheet2", fromRow:5, fromColumn:-1, toRow:4, toColumn:-1, rowCount:1, columnCount:-1, copy: false, insert: true, option: GC.Spread.Sheets.CopyToOptions.value});
复制代码
其中insert表示是否插入
copy为true表示复制,为false表示剪切。
shfit+鼠标左键的UI操作实际对应的即 copy为false,insert为true,您参考上述代码实际测试下。
|