Programmatically save a XLS to PDF

does aspose.excel programmatically save a XLS (excel) workbook to PDF using C#? This will be a windows app.

Any examples?

What is the name?

What is the pricing/license structure?






Robert

Hi Robert,

At this moment XLS to PDF is not available, but that’s an important task on our work list.We will implement XML reading and writing to support format conversions.

Please refer to https://forum.aspose.com/t/118905

@rjwallace,
Just for your info, Aspose.Excel is discontinued and a latest version is introduced named Aspose.Cells. In this new product, we have enhanced the performance, stability and range of features supporting the latest versions of MS Excel also. In this new product, support is available to convert the Excel file to PDF with a minimal code as demonstrated below:

// Open an Excel file
Workbook workbook = new Workbook(dataDir + "Book1.xls");
// Save the document in PDF format
workbook.Save(dataDir + "output.pdf", SaveFormat.Pdf);

For more details on direct conversion and advanced conversion, refer to the following article:
Convert Excel Workbook to PDF

Get the latest version of the product here:
Aspose.Cells for .NET (Latest Version)

Instead of writing code for testing the product features, please have a ready to run solution here which contains hundreds of examples demonstrating different features of this new product.