how to convert exel file in pdf format using c#
how to convert exel file in pdf format using c# ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Lorine ApplebyPosted Jan 15, 2015, 4:51 AM
Here is an article about converting an excel file to PDF format using C#. The code uses this 3rd party .net component for excel, it has a free version and a straightforward api:
ExcelFile.Load("Sample.xlsx", LoadOptions.XlsxDefault)
.Save("Sample.pdf", SaveOptions.PdfDefault);
I hope it suits you.