C# Excel VSTO - 取消选择所有单元格
因此,当您打开 Excel 工作簿时,每个工作表都会保存您上次使用该工作表时最后选择的单元格。在 C# 中,我想取消选择(散焦,无论如何......)每个工作表中的所有单元格。
So when you open an Excel Workbook, each sheet saves the last selection of cells you made from the previous time you used the sheet. In C#, i would like to deselect (de-focus, whatever...) all cells in every sheet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
工作表上始终有一个活动单元格处于活动状态。您唯一能做的就是选择最不烦人的单元格,例如第一个单元格。
There's always an active cell on the sheet which is active. The only thing you can do is select the least annoying cell, such as the first one.