如何在C#中阅读Word文档的段落

时间:2017-11-06 09:18:35

标签: c# .net ms-word automation

我正在开展一个项目,我需要阅读word文档,

我的word文档看起来像这样

enter image description here

我只想阅读文档的访问标准表。

请帮我解决。

先谢谢

2 个答案:

答案 0 :(得分:1)

这可以使用名为“Microsoft.Office.Interop.Word.dll”的dll中公开的API来完成。 这是一个可以帮助您的[教程] :( http://www.kunal-chowdhury.com/2017/02/how-to-read-microsoft-word-document.html#wE1rUI1QABZh86bw.97

也请查看此答案:Read from word document line by line

这也是:How to read pages in a Word document (C#)

答案 1 :(得分:1)

using System;
using Microsoft.Office.Interop.Word;

namespace PageSetup
{
    class TestPageOrientation
    {
        static void Main(string[] args)
        {
            var app = new Microsoft.Office.Interop.Word.Application();
            app.Visible = true;

            //Load Document
            Document document = app.Documents.Open(@"/*YOUR FILE PATH HERE*/");

            document.PageSetup.Orientation = WdOrientation.wdOrientLandscape;
        }
    }
}