我有一个excel文件。这个 excel 文件包含一个关于单元格地址的公式(例如 A10)。现在我打开这个excel文件。我在系统中安装了一个名为 Thomson Reuters 的插件。通过此加载项单元格地址值会定期更改。如何使用 .net (c#) 读取更改后的单元格地址值(不保存 excel 文件)。
问问题
293 次
1 回答
0
您只需使用互操作代码打开您的 excel 文件,这将允许插件代码并排运行。然后您可以使用互操作调用来使用单元格值。
Excel.Application xlApp = new Microsoft.Office.Interop.Excel.ApplicationClass();
xlApp.Visible = true;
Excel.Workbook newWb = xlApp.Workbooks.Open(fileName, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
xlApp.ActiveSheet.get_Range("A10", Type.Missing).Value2;
于 2013-08-29T12:28:59.347 回答