1金币
最佳答案您好,
您指的禁用剪切功能 指的是 禁用 ctrl+x,
还是禁用右键菜单 剪切功能呢?
您可以通过以下代码禁用剪切 ctrl+x:
windows:
spread.commandManager().setShortcutKey(null, GC.Spread.Commands.Key.x, true, false, false, false);
mac:
spread.commandManager().setShortcutKey(null, GC.Spread.Commands.Key.x, false, false, false, true);
API链接:https://demo.grapecity.com.cn/spreadjs/help/api/GC.Sp ...
| |
| |
| |