在代码中设置Word 2007表格样式设计

发布于 2024-10-12 23:13:06 字数 180 浏览 3 评论 0原文

我正在使用 Microsoft.Office.Interop.Word 生成 Word 文档。 在该 Word 文档中,我正在生成一个表格。 我想将表格样式设置为 Word 2007+ 中漂亮的表格设计预设之一,并具有交替的行颜色等。

与其自己设置所有样式属性,是否有更简单的方法来执行此操作(预设名称或某些样式)片段存储库)?

I am generating a Word document using Microsoft.Office.Interop.Word.
In that word document I am generating a table.
I would like to set the table style to one of the nice table design presets in Word 2007+ with alternating row colors, etc.

Rather than setting all the style properties myself, is there an easier way to do this (preset name or some style snippet repository)?

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

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

发布评论

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

评论(1

夕色琉璃 2024-10-19 23:13:06

没关系,我在说明书上找到了。

解决方案:

            object tableStyle = WdBuiltinStyle.wdStyleTableLightShadingAccent1;
            table.set_Style(ref tableStyle);

或者在C# 4中:

            table.set_Style(WdBuiltinStyle.wdStyleTableLightShadingAccent1);

Nevermind, I found it in the manual.

Solution:

            object tableStyle = WdBuiltinStyle.wdStyleTableLightShadingAccent1;
            table.set_Style(ref tableStyle);

or in C# 4:

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