- 1、本文档共52页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C#操作Word
Word对象模型图
Application: 用来表现WORD应用程序,包含其它所有对象。他的成员经常应用于整个Word,可以用它的属性和方法控制Word环境。
Document对象: Document对象是Word编程的核心。当打开一个已有的文档或创建一个新的文档时,就创建了一个新的Document对象,新创建的Document将会被添加到Word Documents Collection。
Selection: Selection对象是描述当前选中的区域。若选择区域为空,则认为是当前光标处。
Rang: 是Document的连续部分,根据起始字符的结束字符定议位置。
Bookmark: 类似于Rang,但Bookmark可以有名字并在保存Document时Bookmark也被保存。
以下代码则为打开一个WORD2003文件:
public void CreateWordDocument(string FileName)
{
if(FileName==””) return;
this.thisApplication=new Microsoft.Office.Interop.Word.ApplicationClass();
thisApplication.Cation=””;
thisApplication.Visible=true;
thisApplication.Options.CheckSpellingAsYouType=false;
thisApplication.Options.CheckGrammarAsYouType=false;
Object filename=FileName;
Object ConfirmConversions=false;
Object ReadOnly=false;
Object AddToRecentFiles=false;
Object PasswordDocument=System.Type.Missing;
Object PasswordTemplate=System.Type.Missing;
Object Revert=System.Type.Missing;
Object WritePasswordDocument=System.Type.Missing;
Object WritePasswordTemplate=System.Type.Missing;
Object Format=System.Type.Missing;
Object Encoding=System.Type.Missing;
Object Visible=System.Type.Missing;
Object OpenAndRepair=System.Type.Missing;
Object DocumentDirection=System.Type.Missing;
Object NoEncodingDialog=System.Type.Missing;
Object XMLTransform=System.Type.Missing;
//??? ??? ??Microsoft.Office.Interop.Word.DocumentClass wordDoc =//??? ??? ?? wordApp.Documents.Open(ref filename, ref ConfirmConversions,//??? ??? ??? ??? ref ReadOnly, ref AddToRecentFiles, ref PasswordDocument, ref PasswordTemplate,//??? ??? ??? ??? ref Revert,ref WritePasswordDocument, ref WritePasswordTemplate, ref Format,//??? ??? ??? ??? ref Encoding, ref Visible);//??? ??? ??Microsoft.Office.Interop.Word.DocumentClass wordDoc =//??? ??? ??? ?wordApp.Documen
文档评论(0)