Quantcast
Channel: Aspose.Pdf Product Family
Viewing all articles
Browse latest Browse all 3131

pdf to excel convert

$
0
0

Hi,

I am trying to convert pdf to excel. using below code. Attached sample files used for my testing. It is generating excel with no content. If  i am trying open excel it isnot opening in office 2013. Also in 2010 it is opening and no content. Please let me know.

Thanks,

-A

Document

pdfDocument = newDocument(@"C:\Users\UC177236\Desktop\Rules\TY2012.pdf");pdfDocument.Save(@"c:\xml\" + "test.xls", SaveFormat.Excel);

ExcelSaveOptions saveExcelOption = newExcelSaveOptions();saveExcelOption.MinimizeTheNumberOfWorksheets = true;

saveExcelOption.InsertBlankColumnAtFirst = false;

saveExcelOption.UniformWorksheets = true;

pdfDocument.Save(@"c:\xml\" + "test1.xls", saveExcelOption);


Viewing all articles
Browse latest Browse all 3131

Trending Articles