如何使用Office Interop迭代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);
}

关于c# - 如何使用Office Interop迭代Word文档中的段落项?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32227384/

10-12 22:34