1
我有一個Word文檔,並希望導出格式爲RTF(或html)的內容。從Word獲取RTF
Word.Application wordApp = new Word.Application();
Word.Document currentDoc = wordApp.Documents.Open("file.docx");
currentDoc.SaveAs("file.rtf", Word.WdSaveFormat.wdFormatRTF);
currentDoc = wordApp.Documents.Open("file.rtf");
Word.Range range = currentDoc.Range();
String RTFText = range.Text;
我試過上面的代碼,但我似乎只是得到文本,沒有hte格式。
任何想法?
我在想辦法複雜。謝謝! – Jaster 2011-01-10 14:07:09