如何使用office互操作迭代Word文档中的段落项

本文关键字:文档 段落项 Word 迭代 何使用 office 互操作 | 更新日期: 2023-09-27 18:09:59

如何使用office_interop在Word文档中迭代段落项(如段落的图像,文本框等)?

如何使用office互操作迭代Word文档中的段落项

这就是如何遍历文档的段落

foreach (Word.Paragraph paragraph in myDocument.Paragraphs)
{
   string pText = paragraph.Range.Text;
   System.Diagnostics.Debug.WriteLine(pText);
   Word.InlineShapes shapes = paragraph.Range.InlineShapes;
   System.Diagnostics.Debug.WriteLine("Shape Count: " + shapes.Count);
}