如果只想复制不想粘贴,只能通过copy命令,但copy命令只能根据选中区域进行复制,没有参数允许根据自定义区域进行复制。
这种情况下,只能建议您通过 setSelection方法选择指定区域,
然后调用copy命令, 使用 clearSelection 清除选择区域。
sheet.setSelection(1,1,2,2);
spread.commandManager().execute({cmd:"copy",sheetName:sheet.name()});
sheet.clearSelection() |