RangeChanged事件
是在我用DELETE删除单元格的时候会触发
选中一行时并没有触发呀
是我理解的不对吗
spreadRangeChanged = (spread) =>{
const activeSheet = spread.getActiveSheet()
// const type = this.props.type
activeSheet.bind(GC.Spread.Sheets.Events.RangeChanged, function (sender, args) {
console.log(args.sheetName, args.action);
});
}
|