如何为特定的Word文档设置特定的保存位置和格式?

如何为特定的Word文档设置特定的保存位置和格式?

有没有办法为单个 Word 文档设置特定的保存位置和格式(比如说 PDF)(而不是每个 Word 文档的默认设置)?

谢谢

答案1

Word 中没有为单个文件设置保存位置的功能。

您可以参考下面的vba代码:

Sub test111111()
ActiveDocument.ExportAsFixedFormat OutputFileName:= _
    "C:\XXX\XXX\test123.pdf", ExportFormat:=wdExportFormatPDF, _
    OpenAfterExport:=True, OptimizeFor:=wdExportOptimizeForPrint, Range:= _
    wdExportAllDocument, From:=1, To:=1, Item:=wdExportDocumentContent, _
    IncludeDocProps:=True, KeepIRM:=True, CreateBookmarks:= _
    wdExportCreateNoBookmarks, DocStructureTags:=True, BitmapMissingFonts:= _
    True, UseISO19005_1:=False
ChangeFileOpenDirectory "File save location"
End Sub

相关内容