使用 Excel 2007 Interop 和 C# 设置单元格格式
我正在使用 Office 2007 互操作程序集创建一些 Excel 电子表格。
这里有很多关于入门的问题,MSDN 包含大量文章,例如 这个。
该 API 很时髦,有时甚至有点令人困惑。
当我设置单元格的值时,有没有办法设置它的格式? 我想将特定字段标记为日期,以便我的客户可以在它们上运行 Excel 宏。 此外,数字也很有用。
谢谢!
I'm using the office 2007 interop assemblies to create some excel spreadsheets.
There are plenty of questions on here about getting started and MSDN contains heaps of articles, like this one.
The API is funky, and sometimes a bit confusing.
When I set a value of a cell, is there a way to set it's format?
I'd like to mark particular fields as Date's so my customer can run excel macros on them.
Also, numbers would be useful.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基于 VBA 的代码。 然而,同样应该适用于 C#(忽略语法)。
学习 Excel 对象模型的最佳方法是创建一个您想要执行的操作宏,查看代码并查看它。 修改需要外部输入的部分。 此外,对象模型非常容易理解(应用程序 -> 工作簿 -> 工作表 -> 工作表 -> 范围(单元格))。
VBA based code. However same should work with c# (ignore the syntax).
The best way to learn Excel Object Model is to create a macro of actions you wish to take, look at the code & modify the parts which require external input. Also, the object model is pretty easy to understand (Application -> Workbook -> Worksheets -> Worksheet -> Range (Cell)).