如何查找 Excel 工作表上选定的单元格?
我需要能够使用 C# 和 Excel 互操作来确定在工作簿/工作表中选择哪些单元格。如果 Excel 中有这样的定义就好了:
Excel.Range Worksheet.GetSelectedCells();
I need to be able to use C# and Excel interop to determine which cells are selected in a workbook/worksheet. It would be nice if there were something like this defined in Excel:
Excel.Range Worksheet.GetSelectedCells();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
Application.Selection
将返回一个范围。Use
Application.Selection
which will return a Range.我想您可以使用 Excel Application 对象的 ActiveCell 属性。它会返回一个 Range 对象。
I guess you can use the ActiveCell property of the Excel Application object. It would return you a Range object.