Hello All,
Recently stumbled accross Syncfucion and so far it's been working pretty nice.
For a small personal project I need to edit an Excel file, and save it as PDF.
The editing part works flawlessly, however when I save it as a PDF, 2 cells don't show in the PDF.
I've attached the Excel in question.
My C# code is as follows.
//Open the Excel document to Convert
ExcelToPdfConverter converter = new ExcelToPdfConverter(workbook);
ExcelToPdfConverterSettings settings = new ExcelToPdfConverterSettings();
// Layout the page using FitAllColumnsOnOnePage options.
settings.LayoutOptions = LayoutOptions.FitAllColumnsOnOnePage;
//Initialize PDF document
PdfDocument pdfDocument = new PdfDocument();
//Convert Excel document into PDF document
pdfDocument = converter.Convert(settings);
PDF looks like the image below. The 2 cells in E39,E40 with 'Subtext1' and 'Subtext2' are missing.
Anyone has an idea as to why this happens?
-Simon
Attachment:
Output_af8f67c9.rar