电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

Microsoft.Office.Interop.Word生产word的方法VIP免费

Microsoft.Office.Interop.Word生产word的方法_第1页
1/24
Microsoft.Office.Interop.Word生产word的方法_第2页
2/24
Microsoft.Office.Interop.Word生产word的方法_第3页
3/24
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...

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

Microsoft.Office.Interop.Word生产word的方法

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部