使用c#从excel 2010文件中删除工作表

发布于 2024-11-16 17:27:21 字数 239 浏览 2 评论 0原文

可能的重复:
.Net Excel Interop 删除工作表

我的 C 盘中有一个 EXCEL 文件.如何使用 C# 从该文件中删除工作表之一?

Possible Duplicate:
.Net Excel Interop Deleting a worksheet

I have an EXCEL file in my C drive.How can i delete one of the work sheet from that file using c#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮光之海 2024-11-23 17:27:21

您可以通过将 Microsoft.Office.Interop 库添加到项目中来与 Excel 进行互操作。您可以通过工作簿对象访问工作表并在指定索引上调用删除。另外,记得事后做一些清理工作。我发现如果处理不当,程序运行完毕后,Excel 会在后台徘徊。

You can interop with Excel by adding the Microsoft.Office.Interop library to your project. You can access the worksheets through a workbook object and call delete on a specified index. Also, remember to do some cleaning up afterwards. I find that Excel likes to linger in the background after the program is done running if not handled properly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文