zoukankan      html  css  js  c++  java
  • 使用C#在word中插入页眉页脚

     //插入页脚

    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.            } 
  • 相关阅读:
    常用加密算法的Java实现总结(二) ——对称加密算法DES、3DES和AES
    常用加密算法的Java实现(一) ——单向加密算法MD5和SHA
    在服务器上用Fiddler抓取HTTPS流量
    org.apache.commons.lang下的工具类
    Spring-bean作用域scope详解
    Tomcat性能调优方案
    JavaScript 闭包究竟是什么
    JavaScript跨域总结与解决办法
    《JAVA与模式》之简单工厂模式
    hibernate缓存机制详细分析
  • 原文地址:https://www.cnblogs.com/rr163/p/3922349.html
Copyright © 2011-2022 走看看