通过c#格式化单元格样式

发布于 2024-10-31 05:11:07 字数 353 浏览 2 评论 0原文

我正在使用以下代码将样式应用到单元格。

但 Office 美国版中存在“Good”风格。

在其他语言的 Office 版本中,其名称有所不同。

有没有其他方法来分配样式

Range cell;
cell.EntireRow.Style = "Good"; 

我认为可以使用 Workbook.Styles[index] 来分配样式。

但不知道样式的确切索引:正常、好、坏,在其他语言的 Office 版本中是否也会有所不同。

另一种解决方案是手动分配所有样式值。

但此解决方案中的问题是获取样式“正常”、“好”、“坏”的所有值。

I am using following code to apply style to cell.

But Style "Good" is present in Office US edition.

In other language Office editions its name is different.

Is there any other way to assign the style

Range cell;
cell.EntireRow.Style = "Good"; 

I think Workbook.Styles[index] can be used to assign style.

but don't know the exact index of the styles : Normal, Good, Bad also will it differ in other language Office editions.

Another solution is to assign all style values manually.

but problem in this solution is to get all values of the styles Normal, Good, Bad.

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

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

发布评论

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

评论(2

情泪▽动烟 2024-11-07 05:11:07

我从未见过名为“Good”的样式 - Office 2003 有“逗号”、“百分比”、“货币”等样式名称,...

是您自己添加的吗?

在任何情况下,样式都有两个名称属性“Name”和“NameLocal”。

我相信您可以使用其中任何一个作为 Workbook.Styles 集合的索引器,因此您的美国英语名称应该适用于其他 Office 语言。

I've never seen the Style named "Good" - Office 2003 has style names like "Comma", "Percent", "Currency",...

Is it one you've added yourself?

In any case, a Style has two name properties "Name" and "NameLocal".

I believe you can use either as an indexer to the Workbook.Styles collection, so your US English names should work in other Office languages.

最舍不得你 2024-11-07 05:11:07

我已经使用索引来分配样式。

I have used indexes to assign styles.

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