image.png (49.0 KB)
string excelFileName = Path.Combine(Path.GetTempPath(), Path.GetFileNameWithoutExtension(fullFileName) + ".xlsx");
Aspose.Pdf.ExcelSaveOptions excelsaveOptions = new ExcelSaveOptions { MinimizeTheNumberOfWorksheets = true, InsertBlankColumnAtFirst = false };
// Save document in excel format
pdfDocument.Save(excelFileName , excelsaveOptions);
GZHL2404016510LW-TRF.pdf (81.5 KB)
Is there a way to stop the pdf header/footer from conversion to excel or moving it to the worksheet header/footer?