转自:http://blog.csdn.net/ruby97/article/details/7406806

Word对象模型  (.Net Perspective)

本文主要针对在Visual Studio中使用C# 开发关于Word的应用程序

来源:Understandingthe Word Object Model from a .NET Developer's Perspective

五大对象

Application           :代表Microsoft Word应用程序本身

Document            :代表一个Word文档

Selection              :代表当前选中的区域(高亮),没有选中区域时代表光标点

Bookmarks           :书签

Range                  :代表一块区域,与Selection类似,不过一般不可见

下面看一下Word的对象结构图:

OK,下面是对上述几大对象的基本特性的描述,让我们对它们有一些基本的认识。

l  Application是Document和Selection的基类。通过Application的属性和方法,我们可以控制Word的大环境。

l  Document代表一个Word文档,当你新建一个Word文档或者打开一个已有的Word文档,你将创建一个Document对象,该对象被加入到Words Documents Collection中。拥有焦点的Document称为ActiveDocument,可以通过Application对象的ActiveDocument属性获得当前文档对象

l  Selection代表当前选中的区域,它通常是高亮显示的(例如,你要改变一段文字的字体,你首先得选    中这段文字,那么选中的这块区域就是当前文档的Selection对象所包含的区域)

l  Range对象也代表文档中的一块区域,它具有以下特点

  • 包含一个起始位置和一个结束位置
  • 它可以包含光标点,一段文本或者整个文档
  • 它包含空格,tab以及paragraph marks
  • 它可以是当前选中的区域,当然也可以不是当前选中区域
  • 它被动态创建
  • 当你在一个Range的末尾插入文本,这将扩展该Range

l  Bookmark对象也代表一块区域,一般使用Bookmark来标记文档中的位置,它有如下特点

  • 书签一般有名字
  • Saved with the document,且文档关闭了之后书签继续存在
  • 书签通常是隐藏的,但也可以通过代码设置其为可见

---------------------------------------------------------------------------------------------

下面分别介绍5大对象:

1. The Application Object

通过Application对象,你可以访问Word的所有对象以及Collections。

参考更多:MSDN-Word2007-Application Object

1.1      Application对象的属性(只介绍部分,完整内容请参看MSDN)

l  ActiveWindow    返回一个Window对象表示拥有焦点的窗口

  1. // C#
  2. public void CreateNewWindowAndTile()
  3. {
  4. // Create a new window from the active document.
  5. Word.Window wnd = ThisApplication.ActiveWindow.NewWindow();
  6. // Tile the two windows.
  7. Object value = Word.WdArrangeStyle.wdTiled;
  8. ThisApplication.Windows.Arrange(ref value);
  9. }

tips:   The Arrange method, like many methods in Word,requires C# developers to pass one or more parameters using the "ref"keyword. This means that the parameter you pass must be stored in a variablebefore you can pass it to the method.

In every case, you'll need to create an Object variable, assign the variable thevalue you'd like to pass to the method, and pass the variable using the ref keyword. You'll find many examples of this technique throughout this document.

---------------------------------------------------------------------------------------------------

l  ActiveDocument        当前活动文档对象

l  ActivePrinter             当前活动打印机

l  ActiveWindow           当前活动窗口

l  Caption                     文档标题

  1. // C#设置word文档标题
  2. public void SetApplicationCaption()
  3. {
  4. // Change caption in title bar.
  5. ThisApplication.Caption = "My New Caption";
  6. }

l  CapsLock   返回大小写锁定键状态

  1. // C#
  2. public void CapsLockOn()
  3. {
  4. MessageBox.Show(ThisApplication.CapsLock.ToString());
  5. }

l  DisplayAlerts 用于设置在代码允许时如何处理警告,它有三种选项:

1.wdAlertsAll                                显示所有消息和警告(默认)

2.wdAlertsMessageBox                 仅显示消息框

3.wdAlertsNone                             忽略任何警告

下面是该属性的常见用法:

  1. // C#
  2. public void DisplayAlerts()
  3. {
  4. // Turn off display of messages and alerts.
  5. try
  6. {
  7. ThisApplication.DisplayAlerts = Word.WdAlertLevel.wdAlertsNone;
  8. // Your code runs here without any alerts.
  9. // . . .code doing something here.
  10. }
  11. catch (Exception ex)
  12. {
  13. // Do something with your exception.
  14. }
  15. finally
  16. {
  17. // Turn alerts on again when done.
  18. ThisApplication.DisplayAlerts = Word.WdAlertLevel.wdAlertsAll;
  19. }
  20. }

l  DisplayStatusBar      可以读/写;用于表示是否显示状态栏

  1. // C#
  2. public void ToggleStatusBar()
  3. {
  4. // Toggle display of the status bar.
  5. bool bln = ThisApplication.DisplayStatusBar;
  6. ThisApplication.DisplayStatusBar = !bln;
  7. }

l  Path           返回当前应用程序的路径

  1. // C#
  2. MessageBox.Show(ThisApplication.Path);

l  Selection    只读对象,表示当前选择的区域(也可以表示光标点位置)

l  UserName  读或写用户名

  1. // C#
  2. public void ChangeUserName()
  3. {
  4. string  str = ThisApplication.UserName;
  5. MessageBox.Show(str);
  6. // Change UserName.
  7. ThisApplication.UserName = "Dudley";
  8. MessageBox.Show(ThisApplication.UserName);
  9. // Restore original UserName.
  10. ThisApplication.UserName = str;
  11. }

l  Visible        只有为true时才可见

  1. // C#
  2. try
  3. {
  4. ThisApplication.Visible = false;
  5. // Do whatever it is, invisibly.
  6. }
  7. catch (Exception ex)
  8. {
  9. // Your exception handler here.
  10. }
  11. finally
  12. {
  13. ThisApplication.Visible = true;
  14. }

1.2      Application对象的方法

l  CheckSpelling 检查拼写

l  Help 弹出帮助对话框,有三种:WdHelp,WdHelpAbout,WdHelpSearch

  1. // C#
  2. public void DisplayHelpAbout()
  3. {
  4. Object value = Word.WdHelpType.wdHelpAbout;
  5. ThisApplication.Help(ref value);
  6. }

l  Move         移动窗口

l  Resize        改变窗口大小

  1. // C#
  2. public void MoveAndResizeWindow()
  3. {
  4. // None of this will work if the window is
  5. // maximized or minimized.
  6. ThisApplication.ActiveWindow.WindowState =
  7. Word.WdWindowState.wdWindowStateNormal;
  8. // Position at upper left corner.
  9. ThisApplication.Move(0, 0);
  10. // Size to 300 x 600 points.
  11. ThisApplication.Resize(300, 600);
  12. }

l  Quit           退出Word,可以带参数WdSaveOptions:三个可选值分别是:

1.wdSaveChanges

2.wdPromptToSaveChanges

3.wdDoNotSaveChanges

  1. // C#
  2. // Automatically save changes.
  3. Object saveChanges     = Word.WdSaveOptions.wdSaveChanges;
  4. Object originalFormat  = Type.Missing;
  5. Object routeDocument   = Type.Missing;
  6. ThisApplication.Quit(  ref saveChanges,
  7. ref originalFormat,
  8. ref routeDocument);
  9. // Prompt to save changes.
  10. saveChanges    = Word.WdSaveOptions.wdPromptToSaveChanges;
  11. originalFormat  = Type.Missing;
  12. routeDocument  = Type.Missing;
  13. ThisApplication.Quit(  ref saveChanges,
  14. ref originalFormat,
  15. ref routeDocument);
  16. // Quit without saving changes.
  17. saveChanges    = Word.WdSaveOptions.wdDoNotSaveChanges;
  18. originalFormat  = Type.Missing;
  19. routeDocument  = Type.Missing;
  20. ThisApplication.Quit(  ref saveChanges,
  21. ref originalFormat,
  22. ref routeDocument);

2. The Document Object

使用Document对象允许你对一个文档进行操作,同时由于Documents Collection的存在,你可以操作所有已经打开的文档。

参考更多:MSDN-Word2007-Document Object

2.1        Document Object Collections

一个文档可以包含一下几类对象:

  • l  Characters
  • l  Words
  • l  Sentences
  • l  Paragraphs
  • l  Sections
  • l  Headers/Footers

2.2 引用文档

你可以引用一个Documents Collection中的Document对象。引用的方法是使用索引(1-based),例如,如下代码引用了collection中的第一个文档

  1. // C#
  2. Word.Document doc = (Word.Document) ThisApplication.Documents[1];

当然,你也可以通过文档的名字来引用它

  1. // C#
  2. Word.Document doc =
  3. (Word.Document) ThisApplication.Documents["MyDoc.doc"];

2.3        打开,关闭与新建文档

l  Add           新建word文档

  1. // C#
  2. // Create a new document based on Normal.dot.
  3. Object template = Type.Missing;
  4. Object newTemplate = Type.Missing;
  5. Object documentType = Type.Missing;
  6. Object visible = Type.Missing;
  7. ThisApplication.Documents.Add(
  8. ref template, ref newTemplate, ref documentType, ref visible);

l  Open 打开word文档

  1. // C#
  2. Object filename = @"C:\Test\MyNewDocument";
  3. Object confirmConversions = Type.Missing;
  4. Object readOnly = Type.Missing;
  5. Object addToRecentFiles = Type.Missing;
  6. Object passwordDocument = Type.Missing;
  7. Object passwordTemplate = Type.Missing;
  8. Object revert = Type.Missing;
  9. Object writePasswordDocument = Type.Missing;
  10. Object writePasswordTemplate = Type.Missing;
  11. Object format = Type.Missing;
  12. Object encoding = Type.Missing;
  13. Object visible = Type.Missing;
  14. Object openConflictDocument = Type.Missing;
  15. Object openAndRepair  = Type.Missing;
  16. Object documentDirection = Type.Missing;
  17. Object noEncodingDialog = Type.Missing;
  18. ThisApplication.Documents.Open(ref filename,
  19. ref confirmConversions, ref readOnly, ref addToRecentFiles,
  20. ref passwordDocument, ref passwordTemplate, ref revert,
  21. ref writePasswordDocument, ref writePasswordTemplate,
  22. ref format, ref encoding, ref visible, ref openConflictDocument,
  23. ref openAndRepair , ref documentDirection, ref noEncodingDialog);

l  Save 保存word文档

  1. // 保存所有文档
  2. Object noPrompt = true;
  3. Object originalFormat = Type.Missing;
  4. ThisApplication.Documents.Save(ref noPrompt, ref originalFormat);
  5. // C#保存当前文档
  6. ThisApplication.ActiveDocument.Save();

  1. // 保存指定名称的文档
  2. Object file = "MyNewDocument.doc";
  3. ThisApplication.Documents.get_Item(ref file).Save();

l  SaveAs 另存为

  1. // C#
  2. // Save the document. In a real application,
  3. // you'd want to test to see if the file
  4. // already exists. This will overwrite any previously
  5. // existing documents.
  6. Object fileName = @"C:\Test\MyNewDocument.doc";
  7. Object fileFormat = Type.Missing;
  8. Object lockComments = Type.Missing;
  9. Object password = Type.Missing;
  10. Object addToRecentFiles = Type.Missing;
  11. Object writePassword = Type.Missing;
  12. Object readOnlyRecommended = Type.Missing;
  13. Object embedTrueTypeFonts = Type.Missing;
  14. Object saveNativePictureFormat = Type.Missing;
  15. Object saveFormsData = Type.Missing;
  16. Object saveAsAOCELetter = Type.Missing;
  17. Object encoding = Type.Missing;
  18. Object insertLineBreaks = Type.Missing;
  19. Object allowSubstitutions = Type.Missing;
  20. Object lineEnding = Type.Missing;
  21. Object addBiDiMarks = Type.Missing;
  22. ThisDocument.SaveAs(ref fileName, ref fileFormat, ref lockComments,
  23. ref password, ref addToRecentFiles, ref writePassword,
  24. ref readOnlyRecommended, ref embedTrueTypeFonts,
  25. ref saveNativePictureFormat, ref saveFormsData,
  26. ref saveAsAOCELetter, ref encoding, ref insertLineBreaks,
  27. ref allowSubstitutions, ref lineEnding, ref addBiDiMarks);

l  Close 关闭word文档

  1. // 关闭所有文档
  2. Object saveChanges     = Word.WdSaveOptions.wdSaveChanges;
  3. Object originalFormat  = Type.Missing;
  4. Object routeDocument   = Type.Missing;
  5. ThisApplication.Documents.Close(ref saveChanges,
  6. ref originalFormat,
  7. ref routeDocument);

  1. // 关闭 active document
  2. Object saveChanges     = Word.WdSaveOptions.wdDoNotSaveChanges;
  3. Object originalFormat  = Type.Missing;
  4. Object routeDocument   = Type.Missing;
  5. ThisDocument.Close(    ref saveChanges,
  6. ref originalFormat,
  7. ref routeDocument);
  8. // Close MyNewDocument and save changes without prompting.
  9. Object name     = "MyNewDocument.doc";
  10. saveChanges    = Word.WdSaveOptions.wdSaveChanges;
  11. originalFormat  = Type.Missing;
  12. routeDocument  = Type.Missing;
  13. Word.Document doc = ThisApplication.Documents.get_Item(ref name);
  14. ThisDocument.Close(    ref saveChanges,
  15. ref originalFormat,
  16. ref routeDocument);

l  实例:遍历DocumentsCollection

  1. // C#
  2. public void SaveUnsavedDocuments()
  3. {
  4. // Iterate through the Documents collection.
  5. string  str;
  6. StringWriter  sw = new StringWriter();
  7. foreach (Word.Document doc in ThisApplication.Documents)
  8. {
  9. if (!doc.Saved )
  10. {
  11. // Save the document.
  12. doc.Save();
  13. sw.WriteLine(doc.Name);
  14. }
  15. }
  16. str = sw.ToString();
  17. if ( str == string.Empty )
  18. {
  19. str = "No documents need saving.";
  20. }
  21. MessageBox.Show(str, "SaveUnsavedDocuments");
  22. }

3The Selection Object

Selection对象代表当前选择的area。在word应用程序中,假如你要让一段字符变成黑体,你必须首先选择该段文字,然后应用样式。在代码中也是同样的道理,你要首先定义selection的区域然后进行操作。你可以使用Selection对象在文档中进行选择,格式化,操作,添加文本等。

Selection对象是始终存在的,如果当前没有选择任何东西,那么它代表一个insertion point。因此,在操作Seleciton之前知道它包含的内容是非常重要的。

Tips:    Selection对象与Range对象有很多成员是类似的,它们之间的区别是Selection对象指的是现实在图形界面的区域,而Range对象代表的区域是不可见的(当然通过调用方法可以使其可见)

1.1      Using the Type Property

Selection的类型有很多。比如,你要对一张表格的一列进行操作,你应该确保该列已经selected,否则会出现运行时错误。

可以通过Selection对象的 Type属性获取你需要的信息,Type属性包含一个WdSelectionType的枚举类型成员。它有如下几个值:

  • wdSelectionBlock
  • wdSelectionColumn
  • wdSelectionFrame
  • wdSelectionInlineShape   表示一幅图片
  • wdSelectionIP                    表示插入点(insertion point)
  • wdSelectionNormal          表示选中的文本或者文本和其他对象的组合
  • wdNoSelection
  • wdSelectionRow
  • wdSelectionShape

下面是Type属性的应用例子

  1. // C#
  2. public void ShowSelectionType()
  3. {
  4. string  str;
  5. switch (ThisApplication.Selection.Type)
  6. {
  7. case Word.WdSelectionType.wdSelectionBlock:
  8. str = "block";
  9. break;
  10. case Word.WdSelectionType.wdSelectionColumn:
  11. str = "column";
  12. break;
  13. case Word.WdSelectionType.wdSelectionFrame:
  14. str = "frame";
  15. break;
  16. case Word.WdSelectionType.wdSelectionInlineShape:
  17. str = "inline shape";
  18. break;
  19. case Word.WdSelectionType.wdSelectionIP:
  20. str = "insertion point";
  21. break;
  22. case Word.WdSelectionType.wdSelectionNormal:
  23. str = "normal text";
  24. break;
  25. case Word.WdSelectionType.wdNoSelection:
  26. str = "no selection";
  27. break;
  28. case Word.WdSelectionType.wdSelectionRow:
  29. str = "row";
  30. break;
  31. default:
  32. str = "(unknown)";
  33. break;
  34. }
  35. MessageBox.Show(str, "ShowSelectionType");
  36. }

1.2      Navigating and Selecting Text

为了判断什么被选中了,你也可以采用下面的方法。

1.2.1  Home and End Key Method

在使用Word时,我们知道,按下键盘的HOME键将使光标移动到光标所在行的行首,按下END键将使光标移动到行尾。在代码中,可以使用模拟按键的方法将改变selection。请看下面两个函数:

HomeKey( [Unit] , [Extend] ) : 模拟按下HOME键

EndKey( [Unit] , [Extend] )   :模拟按下END键

上面的两个函数中,参数Unit有一下可选值(wdUnit类型):

l  Wdline        移动到一行的开始或结束位置(缺省值)

l  WdStory      移动到文档的开始或结束位置

l  WdColumn  移动到一列的开始或结束位置(仅针对表格)

l  WdRow       移动到一行的开始或结束位置(仅正对表格)

参数Extend的可选值(WdMovementType类型):

l  WdMove     移动selection

l  WdExtend   扩展selection。举例说明:考虑一个场景,当前选择了一行,然后调用HomeKey方法,传入参数wdStory以及wdExtend,那么该行将不被包含在新selection对象中,同样的情况如果调用EndKey方法,那么该行将会包含在新selection对象中。

下面的示例代码演示了:移动insertion point到文档开始出,然后使用EndKey方法选中整个文档:

  1. // C#
  2. // Position the insertion point at the beginning
  3. // of the document.
  4. Object unit     = Word.WdUnits.wdStory;
  5. Object extend   = Word.WdMovementType.wdMove;
  6. ThisApplication.Selection.HomeKey(ref unit, ref extend);
  7. // Select from the insertion point to the end of the document.
  8. unit    = Word.WdUnits.wdStory;
  9. extend  = Word.WdMovementType.wdExtend;
  10. ThisApplication.Selection.EndKey(ref unit, ref extend);

1.2.2  Arrow Key Method

既然可以模拟HOME,END键,那么当然也可以模拟按下方向键。Word提供如下四个方法,其中Count参数代表移动多少个Unit。

  • MoveLeft([Unit], [Count], [Extend])
  • MoveRight([Unit], [Count], [Extend])
  • MoveUp([Unit], [Count], [Extend])
  • MoveDown([Unit], [Count], [Extend])

其中,Extend参数使用的是与END,HOME相同的枚举类型变量,它包含两个可选值:wdMove,wdExtend.

而移动单元(Unit)类型与前面的有所不同,而且针对左右移动和上下移动有所区分。

  • 左右移动时对应的单元类型  MoveLeft() MoveRight()
  • wdCharacter: 字符(缺省)
  • wdWord: 单词
  • wdCell: 单元格(仅对表格)
  • wdSentence: 句子

下面的代码演示了:向左移动插入点三个字符,然后选择插入点右边的三个单词

  1. // C#
  2. // Move the insertion point left 3 characters.
  3. Object unit = Word.WdUnits.wdCharacter;
  4. Object count = 3;
  5. Object extend = Word.WdMovementType.wdMove;
  6. ThisApplication.Selection.MoveLeft(ref unit, ref count,
  7. ref extend);
  8. // Select the 3 words to the right of the insertion point.
  9. unit = Word.WdUnits.wdWord;
  10. count = 3;
  11. extend = Word.WdMovementType.wdExtend;
  12. ThisApplication.Selection.MoveRight(ref unit, ref count,
  13. ref extend);

  • 上下移动时对应的单元类型 MoveUp() MoveDown()
  • wdLine            :行 (缺省)
  • wdParagraph  :段落
  • wdWindow           :窗口
  • wdScreen        :屏幕大小

下面的例子演示了使用上述方法先把插入点向上移动一行,然后选择其后的三个段落。

  1. // C#
  2. // Move the insertion point up one line.
  3. Object unit = Word.WdUnits.wdLine;
  4. Object count = 1;
  5. Object extend = Word.WdMovementType.wdMove;
  6. ThisApplication.Selection.MoveUp(ref unit, ref count, ref extend);
  7. // Select the following 3 paragraphs.
  8. unit = Word.WdUnits.wdParagraph;
  9. count = 3;
  10. extend = Word.WdMovementType.wdMove;
  11. ThisApplication.Selection.MoveDown(ref unit, ref count,
  12. ref extend);

3.2.3 Move Method

使用Move方法将改变指定的range或者selection。

下面的例子将使插入点移动到第三个单词之前

  1. // Use the Move method to move 3 words.
  2. Obiect unit = Word.WdUnits.wdWord;
  3. Object count = 3;
  4. ThisApplication.Selection.Move(ref unit, ref count);

3.2.4  Inserting Text

最简单的在文档中插入文本的方法是使用Selection对象的TypeText方法。TypeText方法的行为由用户的选择决定。下面这个例子就使用了一个叫做    overtype 的选项。该选项如果被打开,那么插入字符将导致插入点后面的文本被覆盖。

----------------------------------------------------------------------------

重要的例子  演示如何插入文本
(若selection类型不是insertion point或者 a block of text ,那么下面的代码do nothing)

  1. public void InsertTextAtSelection()
  2. {
  3. Word.Selection sln = ThisApplication.Selection;
  4. // Make sure overtype is turned off.
  5. ThisApplication.Options.Overtype = false;
  6. //当前的selection对象是否为插入点
  7. //如果是,那么插入一段字符,然后插入段标记
  8. if (sln.Type == Word.WdSelectionType.wdSelectionIP )
  9. {
  10. sln.TypeText("Inserting at insertion point. ");
  11. sln.TypeParagraph();//插入paragraph mark
  12. }
  13. //selection对象是否为normal 类型
  14. else if (sln.Type == Word.WdSelectionType.wdSelectionNormal )
  15. {
  16. // 查看ReplaceSelection选项是否开启
  17. //如果开启,那么摧毁该selection,同时将selection对象修改为插入点类型//且定位到之前的selection区域头部
  18. if ( ThisApplication.Options.ReplaceSelection )
  19. {
  20. Object direction = Word.WdCollapseDirection.wdCollapseStart;
  21. sln.Collapse(ref direction);
  22. }
  23. //插入文本与段落标记
  24. sln.TypeText("Inserting before a text block. ");
  25. sln.TypeParagraph();
  26. }
  27. else
  28. {
  29. // Do nothing.
  30. }
  31. }
  32. -----------------------------------------------------------------------

4The Range Object

Range对象也代表一个区域。与使用Selection相比较,Range的优势在于

l  执行给定任务需要较少的代码

l  不需要改变当前文档的选中区域(donot have to change the       highlighting)

l  Has greater capabilities

4.1 定义并选择一个Range

下面的代码新建一个Range对象,并选择文档的前7个字符,包括non-printing字符,然后使用Select方法是Range可见(即高亮显示)。如果不使用Select方法,在Word界面中你将看不到Range对象的区域,但是可以在程序中操作。

  1. // C#
  2. Object start = 0;
  3. Object end = 7;
  4. Word.Range rng = ThisDocument.Range(ref start, ref end);
  5. rng.Select();

1.1.1  Counting Characters

  1. // 选择整个文档,并显示字符总数
  2. Object start = Type.Missing;
  3. Object end = ThisDocument.Characters.Count;
  4. Word.Range rng = ThisDocument.Range(ref start, ref end);
  5. rng.Select();
  6. MessageBox.Show("Characters: " +
  7. ThisDocument.Characters.Count.ToString());

1.1.2  Setting Up Ranges

你可以使用Content属性使Range包含整个文档内容

  1. // C#
  2. Word.Range rng = ThisDocument.Content;

下面的例子完成以下功能:

  • 新建一个 Range变量
  • 检查文档中是否至少含有两个句子
  • 使Range的起始点为第二个句子的开头
  • 使Range的结束点为第二个句子的结尾
  • 高亮显示该Range
 
  1. public void SelectSentence()
  2. {
  3. Word.Range rng;
  4. if (ThisDocument.Sentences.Count >= 2 )
  5. {
  6. // Supply a Start and end value for the Range.
  7. Object start = ThisDocument.Sentences[2].Start;
  8. Object end = ThisDocument.Sentences[2].End;
  9. rng = ThisDocument.Range(ref start, ref end);
  10. rng.Select();
  11. }
  12. }

4.2 扩展Range

定义Range对象后,可以使用MoveStart和MoveEnd方法扩展它的范围。这两个函数使用两个相同的参数:Unit与Count。其中Unit参数是WdUnits类型,它有如下可选值:

  • wdCharacter
  • wdWord
  • wdSentence
  • wdParagraph
  • wdSection
  • wdStory
  • wdCell
  • wdColumn
  • wdRow
  • wdTable

下面的例子演示了:定义一个Range包含文档的前7个字符,然后移动其开始点7个字符长度,于是结果是原来的Range变成了一个insertion point;然后使用MoveEnd方法使其结束点移动7个字符

  1. // C#
  2. // Define a range of 7 characters.
  3. Object start = 0;
  4. Object end = 7;
  5. Word.Range rng = ThisDocument.Range(ref start, ref end);
  6. // Move the starting position 7 characters.
  7. Object unit = Word.WdUnits.wdCharacter;
  8. Object count = 7;
  9. rng.MoveStart(ref unit, ref count);
  10. // Move the ending position 7 characters.
  11. unit = Word.WdUnits.wdCharacter;
  12. count = 7;
  13. rng.MoveEnd(ref unit, ref count);

下图展示了上述代码的移动过程

4.3 获得Range的首字符和尾字符

  1. MessageBox.Show(String.Format("Start: {0}, End: {1}",
  2. rng.Start, rng.End), "Range Start and End");

4.4 使用SetRange方法

  1. // C#
  2. Word.Range rng;
  3. Object start = 0;
  4. Object end = 7;
  5. rng = ThisDocument.Range(ref start, ref end);
  6. // Reset the existing Range.
  7. rng.SetRange(ThisDocument.Sentences[2].Start,
  8. ThisDocument.Sentences[5].End);
  9. rng.Select();

 

4.5 格式化文本

若要给Range指定格式,你首先需要指定一个Range,然后应用格式。

下面的代码演示了如下过程:

1.    选择文档中的第一段,然后设置字号字体以及对齐,

2.    弹出对话框

3.    调用三次Undo方法回退之前的操作

4.    应用Normal IndentStyle然后弹出对话框

5.    调用一次Undo方法然后弹出对话框

  1. // C#
  2. public void FormatRangeAndUndo()
  3. {
  4. // Set the Range to the first paragraph.
  5. Word.Range rng = ThisDocument.Paragraphs[1].Range;
  6. // Change the formatting.
  7. rng.Font.Size = 14;
  8. rng.Font.Name = "Arial";
  9. rng.ParagraphFormat.Alignment =
  10. Word.WdParagraphAlignment.wdAlignParagraphCenter;
  11. rng.Select();
  12. MessageBox.Show("Formatted Range", "FormatRangeAndUndo");
  13. // Undo the three previous actions.
  14. Object times = 3;
  15. ThisDocument.Undo(ref times);
  16. rng.Select();
  17. MessageBox.Show("Undo 3 actions", "FormatRangeAndUndo");
  18. // Apply the Normal Indent style.
  19. Object style = "Normal Indent";
  20. rng.set_Style(ref style);
  21. rng.Select();
  22. MessageBox.Show("Normal Indent style applied",
  23. "FormatRangeAndUndo");
  24. // Undo a single action.
  25. times = 1;
  26. ThisDocument.Undo(ref times);
  27. rng.Select();
  28. MessageBox.Show("Undo 1 action", "FormatRangeAndUndo");
  29. }

 

4.6 插入文本

你可以使用Range对象的Text属性用于向文档中插入文本。下面的代码在文档的开始处插入 “New Text”字符串。然后选择该区域。

  1. // C#
  2. string  str = " new Text ";
  3. Object start = 0;
  4. Object end = 0;
  5. Word.Range rng = ThisDocument.Range(ref start, ref end);
  6. rng.Text = str;
  7. rng.Select();

4.7 替换文本

  1. // C#
  2. start = 0;
  3. end = 12;
  4. rng = ThisDocument.Range(ref start, ref end);
  5. rng.Text = str;
  6. rng.Select();

4.8 Collapsing a Range of Selection

当使用Range对象或者Selection对象时,有可能需要在一段文字前插入文本的同时又不想覆盖原来的文本,Range对象和Selection对象都有Collapse方法,该方法使用了两个枚举值:

WdCollapseStart:Collapses the selection to thebeginning of itself

WdCollapseEnd:Collapsesthe selection to the end of itself

下面的例子首先创建一个Range,然后使其包含文档的第一段,然后使用wdCollapseStart枚举值Collapse该Range,然后插入新文本。

  1. // C#
  2. string  str = " new Text ";
  3. Word.Range rng = ThisDocument.Paragraphs[1].Range;
  4. Object direction = Word.WdCollapseDirection.wdCollapseStart;
  5. rng.Collapse(ref direction);
  6. rng.Text = str;
  7. rng.Select();

若使用wdCollapseEnd,即:

  1. // C#
  2. Object direction = Word.WdCollapseDirection.wdCollapseEnd;
  3. rng.Collapse(ref direction);

结果如下:

Tips : Collapse不是很好去翻译,通俗的说,它的功能是:当你的Range对象或者Selection对象包含的内容是一段文字时,使用Collapse()方法可以使 Range或者Selection包含的区域变成原来那段文字的前插入点或者后插入点

4.9 Paragraph Mark 段落标记

下面的代码把文档中的前两段相互交换位置

重要例子
  1. public void ManipulateRangeText()
  2. {
  3. // Retrieve contents of first and second paragraphs
  4. string  str1 = ThisDocument.Paragraphs[1].Range.Text;
  5. string  str2 = ThisDocument.Paragraphs[2].Range.Text;
  6. // 两个自然段相互交换
  7. Word.Range rng1 = ThisDocument.Paragraphs[1].Range;
  8. rng1.Text = str2;
  9. Word.Range rng2 = ThisDocument.Paragraphs[2].Range;
  10. rng2.Text = str1;
  11. // 显示结果
  12. rng1.Select();
  13. MessageBox.Show(rng1.Text, "ManipulateRangeText");
  14. rng2.Select();
  15. MessageBox.Show(rng2.Text, "ManipulateRangeText");
  16. Object unit = Word.WdUnits.wdCharacter;
  17. Object count = -1;
  18. rng1.MoveEnd(ref unit, ref count);
  19. // Write new text for paragraph 1.
  20. rng1.Text = "new content for paragraph 1.";
  21. rng2.Text = "new content for paragraph 2.";
  22. // Pause to display the results.
  23. rng1.Select();
  24. MessageBox.Show(rng1.Text, "ManipulateRangeText");
  25. rng2.Select();
  26. MessageBox.Show(rng2.Text, "ManipulateRangeText");
  27. unit = Word.WdUnits.wdCharacter;
  28. count = 1;
  29. rng1.MoveEnd(ref unit, ref count);
  30. // Note that in C#, you must specify
  31. // both parameters--it's up to you
  32. // to calculate the length of the range.
  33. unit = Word.WdUnits.wdCharacter;
  34. count = rng2.Characters.Count;
  35. rng2.Delete(ref unit, ref count);
  36. // C#
  37. rng1.Text = str1;
  38. // C#
  39. rng1.InsertAfter(str2);
  40. rng1.Select();
  41. }

本文概要性的介绍了word2007的几大对象,主要是一些API的应用。后面将会通过实例,结合VS2010;来实现C#对Word的操作。

本文的PDF版本下载:            C#操作Word2007_v1.0.pdf

另有C#操作Excel的PDF下载:C#操作Excel2007_v1.0.pdf

c#中操作word文档-四、对象模型的更多相关文章

  1. 2.QT中操作word文档

     Qt/Windows桌面版提供了ActiveQt框架,用以为Qt和ActiveX提供完美结合.ActiveQt由两个模块组成: A   QAxContainer模块允许我们使用COM对象并且可以 ...

  2. c#中操作word文档-一、模板方式写入

    转载自:http://blog.csdn.net/fujie724/article/details/5443322 适合模板写入 今天正好有人问我,怎么生成一个报表式的Word文档. 就是文字的样式和 ...

  3. c#中操作word文档-三、MSDN文档

    这是关于word读写的MSDN内容,基本所有的方法都可以在这上面找到 https://msdn.microsoft.com/zh-cn/library/office/ff837519.aspx

  4. C# 中使用Word文档对图像进行操作

    C# 中使用Word文档对图像进行操作 Download Files: ImageOperationsInWord.zip 简介 在这篇文章中我们可以学到在C#程序中使用一个Word文档对图像的各种操 ...

  5. 如何在程序中给word文档加上标和下标

    如何在程序中给word文档加上标和下标 上标或下标是一个小于普通行格式的数字,图形,标志或者指示通常它的设置与行相比偏上或偏下.下标通常显示于或者低于基准线,而上标则高于.上标和下标通常被用于表达公式 ...

  6. iText操作word文档总结

    操作word文档的工具有很多,除了iText之外还有POI,但是POI擅长的功能是操作excel,虽然也可以操作word,但是能力有限,而且还有很多的bug,技术并不成熟,下面就重点介绍一种操作wor ...

  7. C#操作Word文档(加密、解密、对应书签插入分页符)

    原文:C#操作Word文档(加密.解密.对应书签插入分页符) 最近做一个项目,客户要求对已经生成好的RTF文件中的内容进行分页显示,由于之前对这方面没有什么了解,后来在网上也找了相关的资料,并结合自己 ...

  8. Java文件操作系列[3]——使用jacob操作word文档

    Java对word文档的操作需要通过第三方组件实现,例如jacob.iText.POI和java2word等.jacob组件的功能最强大,可以操作word,Excel等格式的文件.该组件调用的的是操作 ...

  9. 在Delphi中处理word文档与数据库的互联 1

    在Delphi中处理word文档与数据库的互联 ---- 目前,Delphi被越来越多的人选中作为MIS系统开发中的前台工具.在以Delphi为前台,一些大型数据库为后台的MIS系统中,图形的处理不可 ...

随机推荐

  1. CodeForces 602E【概率DP】【树状数组优化】

    题意:有n个人进行m次比赛,每次比赛有一个排名,最后的排名是把所有排名都加起来然后找到比自己的分数绝对小的人数加一就是最终排名. 给了其中一个人的所有比赛的名次.求这个人最终排名的期望. 思路: 渣渣 ...

  2. .NET类型转换的常用方式

    第一.隐式转换 byte, short, int, long, fload, double 等,根据这个排列顺序,各种类型的值依次可以向后自动进行转换 如果需要逆转换,则需要进行强制转化.同时考虑溢出 ...

  3. mplayer 用法大全 转

    1,录音:mplayer       mms://202.***.***.***/test.asf     -dumpstream     -dumpfile  MyMovie.asf 可以把mms ...

  4. C# 位域[flags] 转

    C# 位域[flags] .NET中的枚举我们一般有两种用法,一是表示唯一的元素序列,例如一周里的各天:还有就是用来表示多种复合的状态.这个时候一般需要为枚举加上[Flags]特性标记为位域,例如: ...

  5. 《Code Complete》ch.24 重构

    WHAT? 重构(refactoring),Martin Fowler将其定义为“在不改变软件外部行为的前提下,对其内部结构进行改变,使之更容易理解并便于修改”. WHY? 神话:一个管理很完善的软件 ...

  6. Oracle 启动状态解说

    oracle 启动状态由nomount-mount-open 一. nomount状态下操作 08:09:49 idle> startup nomount; ORACLE instance st ...

  7. 在解决方案中所使用 NuGet 管理软件包依赖

    使用程序包恢复功能可以在提交源代码时, 不需要将代码库提交到源代码管理中,大幅减少项目的尺寸.所有NuGet程序包都存储在解决方案的Packages文件夹中. 要启用程序包恢复功能,可右键单击解决方案 ...

  8. cookie、session、sessionid 与jsessionid

    可查看 http://www.cnblogs.com/fnng/archive/2012/08/14/2637279.html

  9. Orchard官方文档翻译(七) 导航与菜单

    原文地址:http://docs.orchardproject.net/Documentation/Navigation-and-menus 想要查看文档目录请用力点击这里 最近想要学习了解orcha ...

  10. .NET程序与CA对接一直提示重定向

    最可能问题:应用程序服务器与CA服务器时间不同步 解决方法: 打开时间,选择internet时间,操作如图,在.net程序服务器 输入CA服务器的IP ,或者CA服务器输入 .net程序部署服务器的I ...