如何从.doc获取确切的页面?

时间:2017-11-09 08:22:22

标签: c# string ms-word document

所以我有一个包含很多页面的.doc,我想在C#中打开一个特定的页面。以下是我用来查看文档的代码

string docPath = @"...\path\to\doc.doc";
Microsoft.Office.Interop.Word.Application app = new 
Microsoft.Office.Interop.Word.Application();
Document doc = app.Documents.Open(docPath);
string words = doc.Content.Text;
doc.Close();
app.Quit();

0 个答案:

没有答案