如何从c#中的doc文件中获取每页文本?

时间:2016-11-14 06:52:25

标签: c# ms-office

我使用microsoft.office.interop.word参考库从c#的整个doc页面获取文本:

string docPath = Server.MapPath("~/images/profile/" + pic);
Application app = new Application();
Document doc = app.Documents.Open(docPath);
string words = doc.Content.Text;

但是如何从doc文件中获取每页文本?

0 个答案:

没有答案