.NET SDK for Cloud Spreadsheet Processing
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
This Cloud SDK enhances your C#, ASP.NET, & other .NET cloud-based apps to process & manipulate Microsoft Excel spreadsheets in the cloud, without MS Office.
Spreadsheet Processing Features
- Add, update, or delete charts, worksheet pictures, shapes, hyperlinks & validations.
- Add or remove cells area for conditional formatting or OleObjects from Excel worksheets.
- Insert or delete, horizontal or vertical page breaks
- Add ListObject at a specific place within an Excel file & convert them to a range of cells.
- Delete specific or all ListObjects in a worksheet or summarize its data with a pivot table.
- Apply custom criteria to list filters of various types.
- Get, update, show, or hide chart legend & titles.
- Manipulate page setup, header & footer.
- Create, update, fetch, or delete document properties.
- Fetch the required shape from the worksheet.
- Load & Process Excel Spreadsheets via Cloud SDK.
- Cloud SDK to Read & Process Excel Worksheets.
- Leverage the Power of Pivot Tables & Ranges.
Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM
OpenOffice: ODS
SpreadsheetML: XML
Text: CSV, TSV, TXT, TabDelimited
Web: HTML, MHTML
Save Spreadsheet As
DIF, PDF, XPS, TIFF, SVG, MD (Markdown)
SXC, FODS
Get Started
You do not need to install anything to get started with Aspose.Cells Cloud SDK for .NET. Just create an account at Aspose for Cloud and get your application information.
Simply execute Install-Package Aspose.Cells-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.Cells assembly in your project. If you already have Aspose.Cells Cloud SDK for .NET and want to upgrade it, please execute Update-Package Aspose.Cells-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
Convert Excel file to PDF Document using C# Code
// for complete examples, please visit https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet
// Get Client Id and Client Secret from https://dashboard.aspose.cloud
string MyClientId = "My-Client-Id";
string MyClientSecret = "My-Client-Secret";
// Create instance of the API
var apiInstance = new Aspose.Cells.Cloud.SDK.Api.CellsApi(MyClientId, MyClientSecret);
// Convert excel file to PDF
var response = apiInstance.CellsSaveAsPostDocumentSaveAs("sample-file.xlsx", new SaveOptions() { SaveFormat = "pdf" }, "sample-file.pdf", true);
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial