Microsoft.Office.Interop.Word 生产w ord 的方法 一、添加页眉 01.using System; 02.using System.Collections.Generic; 03.using System.ComponentModel; 04.using System.Data; 05.using System.Linq; 06.using System.Text; 07.using Word = Microsoft.Office.Interop.Word; 08.using System.IO; 09.using System.Reflection; 10.using Microsoft.Office.Interop.Word; 11. 12. 13.namespace WordCreateDLL 14.{ 15. public class AddHeader 16. { 17. public static void AddSimpleHeader(Application WordApp, string HeaderText) 18. { 19. //添加页眉 20. WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView; 21. WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader; 22. WordApp.ActiveWindow.ActivePane.Selection.InsertAfter(HeaderText); 23. WordApp.Selection.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;//设置左对齐 24. WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument; 25. } 26. public static void AddSimpleHeader(Application WordApp, string HeaderText, WdParagraphAlignment wdAlign) 27. { 28. //添加页眉 29. WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView; 30. WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader; 31. WordApp.ActiveWindow.ActivePane.Selection.InsertAfter(HeaderText); 32. //WordApp.Selection.Font.Color = WdColor.wdColorDarkRed;//设置字体颜色 33. WordApp.Selection.ParagraphFormat.Alignment = wdAlign;//设置左对齐 34. WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument; 35. } 36. public static void AddSimpleHeader(Application WordApp, string HeaderText, WdParagraphAlignment wdAlign,WdColor fontcolor, float fontsize) 37. { 38. //添加页眉 39. WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView; 40. WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader; 41. WordApp.ActiveWindow.ActivePane.Selection.InsertAfter(HeaderText); 42. WordApp.Selecti...