通过 API 将文件另存为 PDF 所需的 Excel 2007 中 PDF 的文件类型号是多少?

发布于 2024-07-17 21:33:26 字数 662 浏览 6 评论 0原文

我需要调用一个函数来保存 Excel 工作簿。 我安装了 Excel 2007 的 PDF 保存插件,但现在我需要知道保存 Excel 文件时文件格式的数字代码是什么。

可以在此处找到 Excel 文件格式数字的示例。

http://www.dailydoseofexcel.com/archives /2006/10/29/saveas-in-excel-2007/

FileExtStr = ".xlsb": FileFormatNum = 50
FileExtStr = ".xlsx": FileFormatNum = 51
FileExtStr = ".xlsm": FileFormatNum = 52
FileExtStr = ".xls": FileFormatNum = 56
FileExtStr = ".csv": FileFormatNum = 6
FileExtStr = ".txt": FileFormatNum = -4158
FileExtStr = ".prn": FileFormatNum = 36

我需要 .pdf 结尾的那个。

I need to call a function in order to save an Excel workbook. I installed the PDF save addon for Excel 2007 but now I need to know what the number code is for the file format for when I save the excel file.

An example of the excel file format numbers can be found here.

http://www.dailydoseofexcel.com/archives/2006/10/29/saveas-in-excel-2007/

FileExtStr = ".xlsb": FileFormatNum = 50
FileExtStr = ".xlsx": FileFormatNum = 51
FileExtStr = ".xlsm": FileFormatNum = 52
FileExtStr = ".xls": FileFormatNum = 56
FileExtStr = ".csv": FileFormatNum = 6
FileExtStr = ".txt": FileFormatNum = -4158
FileExtStr = ".prn": FileFormatNum = 36

I need the one for the .pdf ending.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情愿 2024-07-24 21:33:26

查看 Workbook.ExportAsFixedFormat 方法:

ActiveWorkbook.ExportAsFixedFormat Type:=xlTypePDF 
    FileName:=“sales.pdf” 
    Quality:=xlQualityStandard 
    DisplayFileAfterPublish:=True 

此方法应该优于使用 SaveAs,因为它还允许指定所有 PDF / XPS 选项。

注意:此方法已添加到 Excel 2007 的 Excel 对象模型中,并且需要 另存为 PDF 或 XPS 插件,以便安装 2007 Microsoft Office 程序。

Check out the Workbook.ExportAsFixedFormat method:

ActiveWorkbook.ExportAsFixedFormat Type:=xlTypePDF 
    FileName:=“sales.pdf” 
    Quality:=xlQualityStandard 
    DisplayFileAfterPublish:=True 

This method should be preferred over using SaveAs because it also allows specifying all PDF / XPS options.

Note: This method has been added to the Excel object model with Excel 2007 and requires the Save as PDF or XPS Add-in for 2007 Microsoft Office programs to be installed.

赏烟花じ飞满天 2024-07-24 21:33:26

我是用Word做的,格式编号是17。

I did this in Word, and the format number is 17.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文