资源描述:
《操作Word文档超详细操作总结大全.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、前提工作:UsingMicrosoft.Office.Interop.Word;MicrosoftOffice11.0ObjectLibrary;必要实例化的两个类:Microsoft.Office.Interop.Word.Applicationmyword=newMicrosoft.Office.Interop.Word.Application();//对word软件的操作Microsoft.Office.Interop.Word.Documentmydoc=newMicrosoft.Office.Interop.Word.Document
2、();//对word软件中文本的操作Microsoft.Office.Interop.Word.Rangemyrange=myword.Application.Selection.Range;//对word软件中文本字体设置的操作Microsoft.Office.Interop.Word.InlineShapeshape=myword.ActiveWindow.ActivePane.Selection.InlineShapes.AddPicture(“图片地址”,Nothing,Nothing,Nothing);//页眉插入图片Microsof
3、t.Office.Interop.Word.PageNumbersPns=myword.Selection.Sections[1].Headers[WdHeaderFooterIndex.wdHeaderFooterEvenPages].PageNumbers;//获取当前页码myword.Selection和myword.Application.Selection//两者使用相同,Application指向的是Word应用程序经常使用变量:ObjectNothing=System.Reflection.Missing.Value;//选参数的
4、默认参数Objectunite=WdUnits.wdStory;//word场景范例:①myword.selection.EndKey(refunite,refNoThing);常用的方法和属性:①Word引用常用的方法:/*文档集指向Word的文档*/mydoc=myWord.Document.Add(refNothing,refNothing,refNothing,refNothing);//文档集指向word文档mydoc.Activate();//激活mydoc指定对象/*Word文档操作*/Objectpath=“本机保存文件地址”;
5、Objectformat003=WdSaveFormat.wdFormatDocument;//指定保存的格式mydoc.SaveAs(refpath,refformat003,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing);//保存word文档mydoc.SaveAs2(refpath
6、,refformatPDF,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing,refNothing);//保存word文档SaveAs(..)函数和SaveAs2(..)函数的区别:SaveAs2(..)只适用在Word2010项目中。解释:该函数功能为word文件另存为到本机硬盘中,在有指定存储格式的时候不需要追加“后缀名”字符串额外知识体系:{WdSaveFormat类的格式常用属性表wdfor
7、matdocument微软Word格式。wdformatdostext微软文本格式。wdformatdostextlinebreaks微软DOS文本保存换行符。wdformatencodedtext编码文本格式。wdformatfilteredhtml过滤HTML格式。wdformathtml标准HTML格式。wdformatrtf富文本格式(RTF)。wdformattemplate微软Word模板格式。wdformattext微软视窗文本格式。wdformattextlinebreaks微软Windows文本格式保留换行符。wdformat
8、unicodetext文本格式。wdformatwebarchive网络归档格式。wdformatxml可扩展标记语言(XML)格式。mydoc.Co