欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

使用C#实现在word中插入页眉页脚的方法

时间:2021-06-01 08:53:17|栏目:.NET代码|点击:

针对Word的操作是很多程序都具备的功能,本文即以实例展示使用C#实现在word中插入页眉页脚的方法,供大家参考借鉴,具体方法如下:

一、插入页脚的方法:

public void InsertFooter(string footer) 
{ 
  if (ActiveWindow.ActivePane.View.Type == WdViewType.wdNormalView || 
    ActiveWindow.ActivePane.View.Type == WdViewType.wdOutlineView) 
  { 
    ActiveWindow.ActivePane.View.Type = WdViewType.wdPrintView; 
  } 
 
  ActiveWindow.View.SeekView = WdSeekView.wdSeekCurrentPageFooter; 
  this.Application.Selection.HeaderFooter.LinkToPrevious = false; 
  this.Application.Selection.HeaderFooter.Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter; 
  ActiveWindow.ActivePane.Selection.InsertAfter(footer); 
 
  //跳出页眉页脚设置 
  ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument; 
 
} 

二、msdn上的方法:

foreach (Word.Section wordSection in this.Application.ActiveDocument.Sections) 
{ 
    Word.Range footerRange = wordSection.Footers[Word.WdHeaderFooterIndex.wdHeaderFooterPrimary].Range; 
    footerRange.Font.ColorIndex = Word.WdColorIndex.wdDarkRed; 
    footerRange.Font.Size = 20; 
    footerRange.Text = "页脚 页脚"; 
} 

foreach (Word.Section section in this.Application.ActiveDocument.Sections) 
{ 
    Word.Range headerRange = section.Headers[Word.WdHeaderFooterIndex.wdHeaderFooterPrimary].Range; 
    headerRange.Fields.Add(headerRange, Word.WdFieldType.wdFieldPage); 
    headerRange.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphRight; 
} 

希望本文实例能够对大家的C#程序设计起到一定的帮助作用。

上一篇:.NET中的静态与非静态的区别分析

栏    目:.NET代码

下一篇:c#操作iis根目录的方法

本文标题:使用C#实现在word中插入页眉页脚的方法

本文地址:http://www.codeinn.net/misctech/133291.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有