5

我正在使用NetOffice创建 Word 文档。

文档很少,我正在努力添加标题。有人可以帮忙吗?

4

1 回答 1

4

您必须使用该Word.Section.Headers属性,在下面的示例中,我在页眉上放置了一个右对齐的图像

    foreach (Word.Section section in newDocument.Sections)
        {
            string picturePath = @"D:\Desktop\test.png";
            section.Headers[WdHeaderFooterIndex.wdHeaderFooterPrimary].Range.InlineShapes.AddPicture(picturePath);
            section.Headers[WdHeaderFooterIndex.wdHeaderFooterPrimary].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphRight;
        }

要添加一些文本,请使用:

    foreach (Word.Section section in newDocument.Sections)
       section.Headers[WdHeaderFooterIndex.wdHeaderFooterPrimary].Range.Text = "TEST";

希望这有助于进一步调查。

于 2013-07-09T10:02:00.307 回答