Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要能够使用 C# 和 Excel 互操作来确定在工作簿/工作表中选择了哪些单元格。如果在 Excel 中有这样的定义就好了:
Excel.Range Worksheet.GetSelectedCells();
使用Application.Selectionwhich 将返回一个范围。
Application.Selection
我猜你可以使用 Excel 应用程序对象的 ActiveCell 属性。它会返回一个 Range 对象。