I am attempting to set up a routine that opens excel and save it as a PDF. I am new to Aspose.Cells and want to specify the PDF version we are exporting the workbook too.
The code belows saves the workbook to PDF 1.4. How do i get this document to save as PDF version 1.7.
using (Workbook workbook = new Workbook(tmpFc.TheFile))
{
// Set Up Save Options
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Page Per Sheet
pdfSaveOptions.OnePagePerSheet = true;
// Save the workbook to PDF format
workbook.Save(tmpFc.PDFFileName, pdfSaveOptions);
}
SaveFormat only has the option to specifiy I’m saving as a PDF not which version.
Any help you can provide is greatly appreciated!
Thanks