Tag Archives: excel to pdf c#

Convert Excel XLS and XLSX to PDF in C#

Excel to PDF C#

This article demonstrates how to convert Excel (XLS, XLSX) files to PDF format using C#. The Portable Document Format (PDF) format developed by Adobe is used as a standard by many organizations to share and store documents. Exporting documents to PDF is a common scenario for many applications.

C# API

Continue Reading
Posted in Aspose.Cells Product Family | Tagged , , , , , , , ,

Directly Converting Excel Files to Pdf with Aspose.Cells

In previous versions, converting Excel files to Pdf needs two components: Aspose.Cells and Aspose.Pdf. With the new version v4.7.0, users can use Aspose.Cells for .NET only to implement this feature. This new change greatly optimizes speed and memory usage.

You will utilize the overloaded Save method of the Workbook class providing the SaveFormat.Pdf enum member that converts the native excel file to pdf format.

The above steps are implemented in the following example.

Example:

[C#]

// Instantiate the Workbook object
Continue Reading
Posted in Aspose.Cells Product Family | Tagged , , , ,