码迷,mamicode.com
首页 > 其他好文 > 详细

使用C#在word中插入页眉页脚

时间:2014-08-19 18:18:35      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:blog   http   color   使用   io   strong   for   ar   

 //插入页脚

  1. public void InsertFooter(string footer)  
  2. {  
  3.     if (ActiveWindow.ActivePane.View.Type == WdViewType.wdNormalView ||  
  4.         ActiveWindow.ActivePane.View.Type == WdViewType.wdOutlineView)  
  5.     {  
  6.         ActiveWindow.ActivePane.View.Type = WdViewType.wdPrintView;  
  7.     }  
  8.   
  9.     ActiveWindow.View.SeekView = WdSeekView.wdSeekCurrentPageFooter;  
  10.     this.Application.Selection.HeaderFooter.LinkToPrevious = false;  
  11.     this.Application.Selection.HeaderFooter.Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;  
  12.     ActiveWindow.ActivePane.Selection.InsertAfter(footer);  
  13.   
  14.     //跳出页眉页脚设置  
  15.     ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument;  
  16.   
  17. }  


 

 

msdn上的方法

    1. foreach (Word.Section wordSection in this.Application.ActiveDocument.Sections)  
    2.            {  
    3.                Word.Range footerRange = wordSection.Footers[Word.WdHeaderFooterIndex.wdHeaderFooterPrimary].Range;  
    4.                footerRange.Font.ColorIndex = Word.WdColorIndex.wdDarkRed;  
    5.                footerRange.Font.Size = 20;  
    6.                footerRange.Text = "页脚 页脚";  
    7.            }  
    8.   
    9.            foreach (Word.Section section in this.Application.ActiveDocument.Sections)  
    10.            {  
    11.                Word.Range headerRange = section.Headers[Word.WdHeaderFooterIndex.wdHeaderFooterPrimary].Range;  
    12.                headerRange.Fields.Add(headerRange, Word.WdFieldType.wdFieldPage);  
    13.                headerRange.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphRight;  
    14.            } 

使用C#在word中插入页眉页脚,布布扣,bubuko.com

使用C#在word中插入页眉页脚

标签:blog   http   color   使用   io   strong   for   ar   

原文地址:http://www.cnblogs.com/rr163/p/3922349.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!