通过 API 将文件另存为 PDF 所需的 Excel 2007 中 PDF 的文件类型号是多少?
我需要调用一个函数来保存 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看
Workbook.ExportAsFixedFormat
方法:此方法应该优于使用
SaveAs
,因为它还允许指定所有 PDF / XPS 选项。注意:此方法已添加到 Excel 2007 的 Excel 对象模型中,并且需要 另存为 PDF 或 XPS 插件,以便安装 2007 Microsoft Office 程序。
Check out the
Workbook.ExportAsFixedFormat
method: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.
我是用Word做的,格式编号是17。
I did this in Word, and the format number is 17.