Aspose.Cells-Cloud
23.6.0
See the version list below for details.
dotnet add package Aspose.Cells-Cloud --version 23.6.0
NuGet\Install-Package Aspose.Cells-Cloud -Version 23.6.0
<PackageReference Include="Aspose.Cells-Cloud" Version="23.6.0" />
paket add Aspose.Cells-Cloud --version 23.6.0
#r "nuget: Aspose.Cells-Cloud, 23.6.0"
// Install Aspose.Cells-Cloud as a Cake Addin #addin nuget:?package=Aspose.Cells-Cloud&version=23.6.0 // Install Aspose.Cells-Cloud as a Cake Tool #tool nuget:?package=Aspose.Cells-Cloud&version=23.6.0
.NET SDK for Spreadsheet Processing in the Cloud
The Cloud SDK enhances your C#, ASP.NET, & other .NET-based cloud apps to process & manipulate Microsoft Excel spreadsheets in the Cloud.
Cloud Spreadsheet Processor in a Nutshell
- Create spreadsheets via APIs or Smart Marker templates.
- Load & process Excel Spreadsheets via Cloud SDK.
- 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 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 worksheet.
- Leverage the power of Pivot Tables & Ranges.
Feature & Enhancements in Version 23.6
- Support to batch lock multi-files.
- Support to batch unlock multi-files.
- Support to protect lock multi-files.
- Support to split lock multi-files.
- Fix put document property api.
Read & Write Spreadsheet Formats
Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM OpenOffice: ODS SpreadsheetML: XML Text: CSV, TSV, TXT (TabDelimited) Web: HTML, MHTML PDF
Save Spreadsheet As
DIF, HTML, MHTML, PNG, JPG, TIFF, XPS, SVG, MD (Markdown), ODS, XLSX, XLS, XLSB, PDF, XML, TXT, CSV
Read Other Formats
SXC, FODS
Integrated Storage API
Since version 19.9, the SDK includes support of storage operations for better user experience and unification, so now there's no need to use 2 different SDKs!
It gives you an ability to:
- Upload, download, copy, move and delete files, including versions handling (if you are using Cloud storage that supports this feature - true by default).
- Create, copy, move and delete folders.
- Copy and move files and folders across separate storages in scope of a single operation.
- Check if certain file, folder or storage exists.
Get Started with Aspose.Cells Cloud SDK for .NET
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.
Next, execute Install-Package Aspose.Cells-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.Cells Cloud SDK 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.
Add a Worksheet to an Excel File in the Cloud
The following code snippet demonstrates how to add a new worksheet to a Microsoft Excel document using C# code:
CellsApi cellsApi =CellsApi(clientId, clientSecret);
string localName = "Book1.xlsx";
string remoteName = "Book1.xlsx";
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
var request = new PutAddNewWorksheetRequest(
name: remoteName,
sheetName: "Sheet1",
position: 0,
sheettype: "VB",
folder: remoteFolder,
storageName: ""
);
cellsApi.PutAddNewWorksheet(request);
Convert Excel Files via C# Code
The following code example elaborates Aspose.Cells REST API to convert an Excel file to another format in the cloud:
CellsApi cellsApi =CellsApi(clientId, clientSecret);
// Upload source file to aspose cloud storage
string localName = "Book1.xlsx";
string remoteName = "Book1.xlsx";
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
var saveOptions = new PdfSaveOptions()
{
SaveFormat = format
};
var request = new PostWorkbookSaveAsRequest(
name: remoteName,
newfilename: newfilename,
saveOptions: saveOptions,
folder: remoteFolder
);
cellsApi.PostWorkbookSaveAs(request);
Tests
Tests contain various examples of using the SDK.
Aspose.Cells Cloud SDKs in Popular Languages
Java | PHP | Python | Ruby | Node.js | Android | Swift | Perl | GO |
---|---|---|---|---|---|---|---|---|
GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub |
Maven | Composer | PIP | GEM | NPM | Maven | POD | CPAN | GO |
Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5.2
- Newtonsoft.Json (>= 11.0.2)
- RestSharp (>= 106.2.2)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 11.0.2)
- RestSharp (>= 106.2.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
24.10.0 | 84 | 10/23/2024 | |
24.9.0 | 462 | 9/18/2024 | |
24.8.0 | 156 | 8/14/2024 | |
24.7.0 | 361 | 7/31/2024 | |
24.6.1 | 1,745 | 7/4/2024 | |
24.6.0 | 122 | 6/23/2024 | |
24.5.1 | 232 | 5/23/2024 | |
24.5.0 | 161 | 5/21/2024 | |
24.4.0 | 1,417 | 4/25/2024 | |
24.3.0 | 277 | 3/21/2024 | |
24.2.1 | 432 | 2/23/2024 | |
24.1.1 | 632 | 1/16/2024 | |
23.12.0 | 626 | 12/29/2023 | |
23.11.0 | 1,173 | 11/24/2023 | |
23.10.0 | 802 | 10/17/2023 | |
23.9.0 | 770 | 9/18/2023 | |
23.8.0 | 1,015 | 8/23/2023 | |
23.7.0 | 991 | 7/28/2023 | |
23.6.0 | 2,148 | 6/29/2023 | |
23.5.0 | 1,104 | 5/25/2023 | |
23.4.1 | 1,011 | 4/22/2023 | |
23.4.0 | 1,004 | 4/21/2023 | |
23.3.0 | 1,029 | 3/31/2023 | |
22.12.0 | 1,530 | 12/16/2022 | |
22.11.0 | 2,013 | 11/16/2022 | |
22.10.0 | 1,287 | 10/17/2022 | |
22.9.0 | 1,389 | 9/22/2022 | |
22.8.0 | 1,232 | 8/24/2022 | |
22.7.0 | 1,249 | 7/28/2022 | |
22.6.0 | 7,097 | 6/27/2022 | |
22.5.0 | 1,793 | 5/30/2022 | |
22.4.0 | 1,900 | 4/20/2022 | |
22.3.0 | 1,370 | 3/14/2022 | |
22.2.0 | 1,738 | 2/23/2022 | |
22.1.0 | 1,455 | 1/24/2022 | |
21.12.0 | 1,121 | 12/28/2021 | |
21.11.0 | 1,168 | 11/30/2021 | |
21.10.0 | 1,164 | 11/8/2021 | |
21.9.0 | 1,217 | 10/13/2021 | |
21.8.0 | 1,201 | 9/18/2021 | |
21.7.0 | 1,222 | 8/3/2021 | |
21.6.1 | 1,124 | 7/21/2021 | |
21.6.0 | 1,112 | 7/17/2021 | |
21.5.0 | 4,038 | 5/27/2021 | |
21.1.0 | 1,357 | 1/25/2021 | |
20.11.0 | 1,415 | 12/3/2020 | |
20.10.0 | 1,428 | 10/23/2020 | |
20.9.0 | 6,108 | 9/23/2020 | |
20.8.0 | 3,828 | 8/19/2020 | |
20.7.1 | 1,485 | 7/28/2020 | |
20.7.0 | 1,412 | 7/21/2020 | |
20.6.0 | 1,436 | 7/1/2020 | |
20.4.0 | 1,484 | 4/22/2020 | |
20.2.0 | 1,511 | 2/20/2020 | |
20.1.0 | 1,466 | 1/17/2020 | |
19.10.0 | 2,380 | 10/30/2019 | |
19.9.0 | 1,573 | 9/24/2019 | |
19.6.0 | 1,960 | 6/18/2019 | |
19.4.0 | 1,579 | 4/17/2019 | |
19.3.0 | 1,467 | 3/7/2019 | |
19.2.1 | 4,434 | 2/22/2019 | |
19.2.0 | 1,633 | 2/18/2019 | |
18.9.1 | 2,725 | 9/6/2018 | |
18.9.0 | 1,780 | 9/4/2018 | |
18.8.0 | 1,867 | 8/3/2018 | |
18.4.0 | 12,290 | 4/23/2018 | |
18.2.0 | 1,956 | 2/26/2018 | |
17.11.0 | 1,831 | 12/18/2017 | |
1.0.18 | 11,078 | 9/27/2017 | |
1.0.17 | 1,882 | 9/27/2017 | |
1.0.16 | 1,969 | 9/5/2017 | |
1.0.15 | 1,932 | 9/5/2017 | |
1.0.14 | 1,906 | 9/5/2017 | |
1.0.13 | 1,937 | 8/14/2017 | |
1.0.12 | 1,867 | 7/18/2017 | |
1.0.11 | 1,947 | 7/3/2017 | |
1.0.10 | 1,887 | 6/21/2017 | |
1.0.9 | 1,928 | 5/25/2017 | |
1.0.8 | 1,902 | 5/24/2017 | |
1.0.7 | 1,918 | 5/24/2017 | |
1.0.6 | 1,853 | 5/23/2017 | |
1.0.5 | 4,014 | 1/6/2017 | |
1.0.4 | 2,081 | 11/2/2016 | |
1.0.3 | 1,948 | 10/20/2016 | |
1.0.2 | 2,267 | 2/19/2016 | |
1.0.1 | 2,046 | 1/12/2016 | |
1.0.0 | 1,996 | 1/7/2016 |