Skip to content

Instantly share code, notes, and snippets.

@aspose-cloud
Last active October 24, 2021 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-cloud/8051188fa7b39c4e5cc47951ec8efa5a to your computer and use it in GitHub Desktop.
Save aspose-cloud/8051188fa7b39c4e5cc47951ec8efa5a to your computer and use it in GitHub Desktop.
This gist contains code snippets related to conversion of Excel workbook to PDF format using Aspose.Cells Cloud SDK for .NET
This gist contains code snippets related to conversion of Excel workbook to PDF format using Aspose.Cells Cloud SDK for .NET
// For complete examples and data files, please go to
https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
// Get client credentials from https://dashboard.aspose.cloud/
string clientSecret = "d757548a9f2558c39c2feebdf85b4c44";
string clientID = "4db2f826-bf9c-42e7-8b2a-8cbca2d15553";
// create CellsApi instance while passing ClientID and ClientSecret
CellsApi instance = new CellsApi(clientID, clientSecret);
// name of input Excel file
string name = "Book1.xlsx";
// format of resultant file
string format = "PDF";
// name of resultant file
string resultantFile = "Converted.pdf";
try
{
// load the file from local drive
using (var file = System.IO.File.OpenRead(@"C:\Users\shahbnay\Downloads\" + name))
{
// initialize the conversion operation
var response = instance.CellsWorkbookPutConvertWorkbook(file, format: format, outPath: resultantFile);
// print success message if conversion is successful
if (response != null && response.Equals("OK"))
{
Console.WriteLine("Successfully converted Excel workbook to PDF format !");
Console.ReadKey();
}
}
catch (Exception ex)
{
Console.WriteLine("error:" + ex.Message + "\n" + ex.StackTrace);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment