Hi Erwin,
Thanks for your interest in our products.
You can convert .doc file into PDF format using Aspose.Words component. For more details and code snippet, please visit: How to Convert a Document to PDF
and by using Aspose.Cells, you can convert .xls file into PDF format. For more details and code snippet, please visit: Convert XLS file (containing images or charts) to PDF
Please feel free to contact support in case you need any further assistance.
Thanks & Regards,
Hello Erwin,
Hi,
Thanks for considering Aspose components.
Aspose.Cells allows you to directly convert the Excel file into PDF as stated in above posts.
For your quick reference, please see the C# code below.
I have attached the source xlsx file and output pdf with this post. Please also see the screenshot.
Please download and use the latest version:
Aspose.Cells
for .NET v7.1.2.5
C#
Workbook workbook = new Aspose.Cells.Workbook(“source.xlsx”);
workbook.Save(“output.pdf”, SaveFormat.Pdf);
Screenshot:
Hi there,