我在 C# 中使用 Word 2007 组件。
我想将 Word 文档另存为 Word97(-2003) 文档,因为不是每个人都使用 Word 2007/2010。
我认为使用以下命令很容易
document.SaveAs(AFullFileName, WdSaveFormat.wdFormatDocument97);
但是随后会显示 SaveAs 对话框,并假设我想将其保存为 docx 文件。
我注意到 WdSaveFormat.wdFormatDocument-flag 与 WdSaveFormat.wdFormatDocument97-flag 具有相同的值。所以我认为我必须做的不仅仅是在 SaveAs 命令中使用这些参数。
有谁能够帮助我?我希望格式正确,而不是看到“另存为”对话框。
谢谢。