使用c#从excel 2010文件中删除工作表
可能的重复:
.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将 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.