При попытке выполнить я получаю исключение «Исключение из HRESULT: 0x800A03EC».
// - Open the source workbook
excelDocument = excelApplication.Workbooks.Open(excelDocumentPath);
if (excelDocument != null)
{
// - Save it in the target format
excelDocument.ExportAsFixedFormat(paramExportFormat,
pdfFile,
paramExportQuality,
paramIncludeDocProps,
paramIgnorePrintAreas,
paramFromPage,
paramToPage,
paramOpenAfterPublish,
paramMissing);
}