0

我正在将一个 excel 文件转换为一个 pdf 文件,但是当我传入用于导出的字符串时,我得到了这个错误(红色下划线 convertFilePath)Argument type string is not assignable to parameter type Microsoft.Office.Interop.Excel.XIFixedFormatType

var convertFileId = Guid.NewGuid();
var convertFilePath = @"c:\temp\" + convertFileId + ".pdf";



public Microsoft.Office.Interop.Excel.Workbook excelWorkbook { get; set; }
    void ExcelToPdf(string convertFilePath)
    {
        Microsoft.Office.Interop.Excel.Application appWord = new Microsoft.Office.Interop.Excel.Application();
        excelWorkbook = appWord.Workbooks.Open(DocumentUNCPath.Text);

        excelWorkbook.ExportAsFixedFormat(convertFilePath, WdExportFormat.wdExportFormatPDF);
        excelWorkbook.Close();
        appWord.Quit();
    }
4

1 回答 1

0

XlFixedFormatType是一个枚举,您应该传递一个有效值。

有关详细信息,请参阅有关 XlFixedFormatType的 MSDN和有关 ExportAsFixedFormat 的 MSDN

例子:

excelWorkbook.ExportAsFixedFormat(xlTypePdf, Filename:=filename);
于 2013-02-18T22:53:04.623 回答