我正在创建一个C#WPF应用程序来逐页复制MS Word文件并将其粘贴到Ms Excel文件中。
我找到以下链接来阅读整个MS Word文件。
http://www.mindstick.com/Articles/5cd1b721-9b94-4ea0-bd6e-2bb157401069/
但我想逐页阅读,请帮助我。
谢谢,
答案 0 :(得分:0)
这样的东西应该在文章中打开文件之后起作用;它来自记忆/文档,所以milage可能会有所不同:)
object missing = System.Reflection.Missing.Value;
var document = application.ActiveDocument;
Word.WdStatistic stat = Word.WdStatistic.wdStatisticPages;
int num = aDoc.ComputeStatistics(stat, ref missing); // Get number of pages
for(int i=0; i<num; i++)
{
document.ActiveWindow.Selection // Go to page "i"
.GoTo(WdGoToItem.wdGoToPage, missing, missing, i.ToString());
document.ActiveWindow.Selection // Select whole page
.GoTo(WdGoToItem.wdGoToBookmark, missing, missing, "\\page");
document.ActiveWindow.Selection.Copy(); // Copy to clipboard
// Do whatever you want with the selection
}