如何使用.NetOffice库添加标头

时间:2013-07-09 09:08:00

标签: c# ms-word netoffice

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

几乎没有文档,我很难添加标题。有人可以帮忙吗?

1 个答案:

答案 0 :(得分: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";

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