Product: PDFTron.NET.x64
Product Version: 10.7.0
Please give a brief summary of your issue:
(Think of this as an email subject)
Excel to PDF conversion, process stack on same excel sheets
Please describe your issue and provide steps to reproduce it:
(The more descriptive your answer, the faster we are able to help you)
Hello.
I have console app, that convert Excel to PDF. But we have a problem, in some cases, with some Sheets the conversion is stack without ending at all.
Code Ex:
using (PDFDoc pdfdoc = new PDFDoc())
{
pdftron.PDF.Convert.OfficeToPDF(pdfdoc, inputPath + inputFileName, null);
pdfdoc.Save(outputPath + outputFileName, SDFDoc.SaveOptions.e_remove_unused);
}
In test file below, the Sheets with names 4 - problem and 5 - problem, cause the problem with stack of all App.
Please provide a link to a minimal sample where the issue is reproducible:
test_for_export.xlsx (36.6 KB)