1金币
最佳答案了解您的需求了,您可以通过RangeChanged事件配合action参数来实现您期望监听删除操作的功能:
https://demo.grapecity.com.cn/sp ... Events#rangechanged
https://demo.grapecity.com.cn/sp ... -rangechangedaction
//监听删除操作
sheet.bind(GC.Spread.Sheets.Events.RangeChanged, function (sender, args) {
if(args.action = GC.Spread.Sheets.RangeChangedAction.clear)
console.log("删除操作");
});
| |
| |
| |
| |
| |