使用 Excel 2007 Interop 和 C# 设置单元格格式

发布于 2024-07-14 23:14:47 字数 318 浏览 8 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

我的痛♀有谁懂 2024-07-21 23:14:47

基于 VBA 的代码。 然而,同样应该适用于 C#(忽略语法)。


cells(1,1).Value = 39875
cells(1,1).NumberFormat = "dd-mmm-yyyy"

学习 Excel 对象模型的最佳方法是创建一个您想要执行的操作宏,查看代码并查看它。 修改需要外部输入的部分。 此外,对象模型非常容易理解(应用程序 -> 工作簿 -> 工作表 -> 工作表 -> 范围(单元格))。

VBA based code. However same should work with c# (ignore the syntax).


cells(1,1).Value = 39875
cells(1,1).NumberFormat = "dd-mmm-yyyy"

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)).

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