0

我遇到以下问题 - 我希望我的 Word 获取以 .doc 格式保存的文档并提取它的特定版本,然后将其转换为 PDF。

实际的打开和转换可以使用以下代码正常工作:

Application wordApp = null;
lock (typeof (Application))
{
    OfficeWordHelper helper = new OfficeWordHelper();
    wordApp = helper.OpenApplicationWithFile(source);

    wordApp.ActiveDocument.SaveAs(ref target, WdSaveFormat.wdFormatPDF,
                                  ref unknown, ref unknown, ref unknown,
                                  ref unknown, ref unknown, ref unknown,
                                  ref unknown, ref unknown, ref unknown,
                                  ref unknown, ref unknown, ref unknown,
                                  ref unknown, ref unknown);
    wordApp = helper.CloseApplication(wordApp);
}

但是,我看不到获取文档特定版本并对该特定版本进行操作的方法,例如将其保存为 pdf。有人有任何提示或代码片段吗?

4

0 回答 0