Hi,
I need to convert pdf to excel, downloaded the trial version, could not find a sample to perform the similar task, please kindly advise.
Hi,
Hi Mleanie,
We would like to share with you that you can generate CSV file format from PDF using Aspose.PDF for .NET 20.7:
ExcelSaveOptions options = new ExcelSaveOptions();
options.ConversionEngine = ExcelSaveOptions.ConversionEngines.NewEngine;
options.Format = ExcelSaveOptions.ExcelFormat.CSV;
Document pdfDocument = new Document("Currencies.pdf");
pdfDocument.Save("Currencies.csv", options);