如何使用 Word 互操作在表格中为每个新页面创建标题?

发布于 2024-08-12 14:41:14 字数 77 浏览 9 评论 0原文

我正在尝试创建一个带有标题的表格。我希望该表的每个新页面都重复此标题。如何使用 Word 2007 Interop 在 C# 中执行此操作?

I am trying to create a table with a header. I want this header to be repeated for each new page that the table takes. How can I do this in C# with Word 2007 Interop?

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

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

发布评论

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

评论(2

二智少女猫性小仙女 2024-08-19 14:41:14
Microsoft.Office.Interop.Word.Table table;
/* ... */
table.Rows[1].HeadingFormat = -1;
Microsoft.Office.Interop.Word.Table table;
/* ... */
table.Rows[1].HeadingFormat = -1;
错々过的事 2024-08-19 14:41:14

这对我来说就是这样,循环遍历最后的每个表格

            foreach (Table item in doc.Tables)
            {
                item.Rows[1].HeadingFormat = -1;
                item.ApplyStyleHeadingRows = true;
            }

,并在每个表格上设置一个样式,并设置属性以在每个新表格上创建一个标题

                    t.set_Style(TableStyle);

This is what word for me, Looping through each table at the end

            foreach (Table item in doc.Tables)
            {
                item.Rows[1].HeadingFormat = -1;
                item.ApplyStyleHeadingRows = true;
            }

and setting a style on each table with the property set to create a header on each new

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