C# 中的 Excel 自动填充事件
我正在使用 C# 编写一个 Excel 加载项,并且需要能够判断用户何时自动填充单元格。
如何捕获自动填充事件?
I'm writing an Excel add-in using C# and need to be able to tell when users autofill cells.
How can I catch the autofill event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是我通过粘贴一系列单元格或拖动值来确定单个单元格是否已更改或多个单元格是否已更改的方法,
我希望这在某种程度上有助于确定单元格的更改方式。
迪佐斯
Here is how I determmine if a single cell has changed or multiples either by pasting a range of cells or by draging values
I hope this helps in some way to determine how the cells have been changed.
Deezos
经过多次尝试,我自己找到了解决方案。该解决方案并不理想,但似乎可行。
确保处理工作表更改事件:
处理该事件的方法应如下所示:
I found the solution myself after many attempts. The solution is not ideal but it seams to work.
Make sure to handle the worksheet Change event:
the method to handle it should then look like this: