Aspose.Cells Cloud SDK for C#: Convert, merge, split, protect, search, replace, and more.

The SDK is open‑source and licensed under the MIT License. You can access the .NET library source code for Aspose.Cells Cloud.

How to use .NET library of Aspose.Cells Cloud

Aspose.Cells Cloud SDK for .NET is a powerful library that allows developers to manipulate and process Microsoft Excel files using the .NET platform. With this SDK, you can create, edit, and convert Excel documents in the cloud without installing additional software or dependencies on your local machine.

In this article, we’ll explore how to use Aspose.Cells Cloud SDK for .NET to perform common tasks such as creating a new Excel workbook, inserting data into cells, and saving the modified workbook to the cloud.

Getting Started

Before you can start using the Aspose.Cells Cloud SDK for .NET, you need to set up your development environment and install the necessary dependencies. Refer to the quick‑start guide on the Aspose website to obtain your client ID and client secret.

How to install the .NET package for Aspose.Cells Cloud

You can install Aspose.Cells Cloud SDK for .NET using NuGet. Below are the steps for NuGet:

Install-Package Aspose.Cells-Cloud

You can also install the SDK using the .NET CLI:

dotnet add package Aspose.Cells-Cloud

How to use the .NET package to convert XLSX to PDF

  • Import Aspose.Cells Cloud Library
    Add the required namespace from the Aspose.Cells Cloud .NET SDK to your project.

  • Configure API client with credentials
    Authenticate the API client using your client ID and client secret.

  • Prepare conversion parameters
    Define the source file name, desired output format, and storage folder path.

  • Execute workbook conversion
    Call the PostConvertWorkbook method and handle the response.

Sample Code