Search
Follow Us
Categories
- Success Stories(157)
Archives
Tag Archives: aspose excel to pdf
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