我正在使用NetOffice来创建Word文档。
几乎没有文档,我很难添加标题。有人可以帮忙吗?
答案 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";
希望这有助于进一步调查。