通过c#格式化单元格样式
我正在使用以下代码将样式应用到单元格。
但 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我从未见过名为“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.
我已经使用索引来分配样式。
I have used indexes to assign styles.