Skip to content

Commit 04d5720

Browse files
committed
Release Aspose.Cells Cloud SDK 25.3
1 parent 3a14ed9 commit 04d5720

File tree

96 files changed

+2705
-548
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+2705
-548
lines changed

README.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-java/25.2.0)
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-java/25.3.0)
22

33
# Java package for Aspose.Cells Cloud
44

@@ -17,18 +17,15 @@ Enhance your Java applications with the [Aspose.Cells Cloud](https://products.as
1717
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
1818
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
1919

20-
## Feature & Enhancements in Version 25.2
20+
## Feature & Enhancements in Version 25.3
2121

2222
Full list of issues covering all changes in this release:
2323

24-
- Support copying a range from one workbook to another workbook.
25-
- Add query parameters for image and print options to enhance the Get Worksheet API.
26-
- Added an API to count the number of Excel characters for cells cloud.
27-
- Added an API to count the number of Excel words for cells cloud.
28-
- Added an API to count the number of occurrences of a specified word in Excel for cells cloud
29-
- Add a new feature to support converting range to images.
30-
- Add a new feature to support converting worksheets to images
31-
24+
- Optimized the properties of SaveOptions to enhance performance and flexibility.
25+
- Optimized the conversion method of Workbook for improved efficiency and reliability.
26+
- Developed a new API to retrieve a comprehensive list of all styles in a workbook.
27+
- Enhanced all save options to improve functionality and user experience.
28+
- Added a new API to insert images into cells.
3229

3330
## Support file format
3431

@@ -117,6 +114,16 @@ File response = cellsApi.putConvertWorkbook(request);
117114

118115
# Release history version
119116

117+
## Enhancements in Version 25.2
118+
119+
- Support copying a range from one workbook to another workbook.
120+
- Add query parameters for image and print options to enhance the Get Worksheet API.
121+
- Added an API to count the number of Excel characters for cells cloud.
122+
- Added an API to count the number of Excel words for cells cloud.
123+
- Added an API to count the number of occurrences of a specified word in Excel for cells cloud
124+
- Add a new feature to support converting range to images.
125+
- Add a new feature to support converting worksheets to images
126+
120127
## Enhancements in Version 25.1
121128

122129
- Add the new API for splitting text in the cell.

docs/api/add-picture-in-cell.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# **addPictureInCell API**
2+
3+
add new picture in the cells.
4+
5+
```bash
6+
7+
POST http://api.aspose.cloud/v3.0//cells/{name}/worksheets/{sheetName}/pictures/addPictureInCell
8+
9+
```
10+
11+
## The request parameters of **addPictureInCell** API are:
12+
13+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
14+
| :- | :- | :- |:- |
15+
|name|String|Path||
16+
|sheetName|String|Path||
17+
|cellName|String|Query||
18+
|picturePath|String|Query||
19+
|folder|String|Query||
20+
|storageName|String|Query||
21+
22+
23+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/PicturesController/AddPictureInCell) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

docs/api/get-all-styles.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# **getAllStyles API**
2+
3+
Get all style in the workbook.
4+
5+
```bash
6+
7+
GET http://api.aspose.cloud/v3.0//cells/{name}/allstyles
8+
9+
```
10+
11+
## The request parameters of **getAllStyles** API are:
12+
13+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
14+
| :- | :- | :- |:- |
15+
|name|String|Path||
16+
|folder|String|Query||
17+
|storageName|String|Query||
18+
19+
20+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/WorkbookController/GetAllStyles) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

docs/api/get-chart-area.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **getChartArea API**
22

3-
3+
Retrieve chart area description in the worksheet.
44

55
```bash
66

@@ -12,11 +12,11 @@ GET http://api.aspose.cloud/v3.0//cells/{name}/worksheets/{sheetName}/charts/{ch
1212

1313
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
1414
| :- | :- | :- |:- |
15-
|name|String|Path||
16-
|sheetName|String|Path||
17-
|chartIndex|Integer|Path||
18-
|folder|String|Query||
19-
|storageName|String|Query||
15+
|name|String|Path|The file name.|
16+
|sheetName|String|Path|The worksheet name.|
17+
|chartIndex|Integer|Path|The chart index.|
18+
|folder|String|Query|The folder where the file is situated.|
19+
|storageName|String|Query|The storage name where the file is situated.|
2020

2121

2222
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/ChartAreaController/GetChartArea) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **getDocumentProperties API**
22

3-
3+
Retrieve descriptions of Excel file properties.
44

55
```bash
66

@@ -12,10 +12,10 @@ GET http://api.aspose.cloud/v3.0//cells/{name}/documentproperties
1212

1313
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
1414
| :- | :- | :- |:- |
15-
|name|String|Path||
16-
|type|String|Query||
17-
|folder|String|Query||
18-
|storageName|String|Query||
15+
|name|String|Path|The workbook name.|
16+
|type|String|Query|Excel property type.|
17+
|folder|String|Query|The folder where the file is situated.|
18+
|storageName|String|Query|The storage name where the file is situated.|
1919

2020

2121
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/PropertiesController/GetDocumentProperties) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

docs/api/get-page-setup.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **getPageSetup API**
22

3-
3+
Retrieve page setup description in the worksheet.
44

55
```bash
66

@@ -12,10 +12,10 @@ GET http://api.aspose.cloud/v3.0//cells/{name}/worksheets/{sheetName}/pagesetup
1212

1313
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
1414
| :- | :- | :- |:- |
15-
|name|String|Path||
16-
|sheetName|String|Path||
17-
|folder|String|Query||
18-
|storageName|String|Query||
15+
|name|String|Path|The file name.|
16+
|sheetName|String|Path|The worksheet name.|
17+
|folder|String|Query|The folder where the file is situated.|
18+
|storageName|String|Query|The storage name where the file is situated.|
1919

2020

2121
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/PageSetupController/GetPageSetup) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **getVerticalPageBreaks API**
22

3-
3+
Retrieve descriptions of vertical page breaks in the worksheet.
44

55
```bash
66

@@ -12,10 +12,10 @@ GET http://api.aspose.cloud/v3.0//cells/{name}/worksheets/{sheetName}/verticalpa
1212

1313
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
1414
| :- | :- | :- |:- |
15-
|name|String|Path||
16-
|sheetName|String|Path||
17-
|folder|String|Query||
18-
|storageName|String|Query||
15+
|name|String|Path|The workbook name.|
16+
|sheetName|String|Path|The worksheet name.|
17+
|folder|String|Query|The folder where the file is situated.|
18+
|storageName|String|Query|The storage name where the file is situated.|
1919

2020

2121
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/PageBreaksController/GetVerticalPageBreaks) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **getWorkbookDefaultStyle API**
22

3-
3+
Retrieve the description of the default style for the workbook .
44

55
```bash
66

@@ -12,9 +12,9 @@ GET http://api.aspose.cloud/v3.0//cells/{name}/defaultstyle
1212

1313
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
1414
| :- | :- | :- |:- |
15-
|name|String|Path||
16-
|folder|String|Query||
17-
|storageName|String|Query||
15+
|name|String|Path|The file name.|
16+
|folder|String|Query|The folder where the file is situated.|
17+
|storageName|String|Query|The storage name where the file is situated.|
1818

1919

2020
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/WorkbookController/GetWorkbookDefaultStyle) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

docs/api/get-workbook.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **getWorkbook API**
22

3-
3+
Retrieve workbooks in various formats.
44

55
```bash
66

@@ -12,19 +12,19 @@ GET http://api.aspose.cloud/v3.0//cells/{name}
1212

1313
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
1414
| :- | :- | :- |:- |
15-
|name|String|Path||
16-
|format|String|Query||
17-
|password|String|Query||
18-
|isAutoFit|Boolean|Query||
19-
|onlySaveTable|Boolean|Query||
20-
|folder|String|Query||
21-
|outPath|String|Query||
22-
|storageName|String|Query||
23-
|outStorageName|String|Query||
24-
|checkExcelRestriction|Boolean|Query||
25-
|region|String|Query||
26-
|pageWideFitOnPerSheet|Boolean|Query||
27-
|pageTallFitOnPerSheet|Boolean|Query||
15+
|name|String|Path|The file name.|
16+
|format|String|Query|The conversion format(CSV/XLS/HTML/MHTML/ODS/PDF/XML/TXT/TIFF/XLSB/XLSM/XLSX/XLTM/XLTX/XPS/PNG/JPG/JPEG/GIF/EMF/BMP/MD[Markdown]/Numbers).|
17+
|password|String|Query|The password needed to open an Excel file.|
18+
|isAutoFit|Boolean|Query|Specifies whether set workbook rows to be autofit.|
19+
|onlySaveTable|Boolean|Query|Specifies whether only save table data.Only use pdf to excel.|
20+
|folder|String|Query|The folder where the file is situated.|
21+
|outPath|String|Query|Path to save the result. If it's a single file, the `outPath` should encompass both the filename and extension. In the case of multiple files, the `outPath` should only include the folder.|
22+
|storageName|String|Query|The storage name where the file is situated.|
23+
|outStorageName|String|Query|The storage name where the output file is situated.|
24+
|checkExcelRestriction|Boolean|Query|Whether check restriction of excel file when user modify cells related objects.|
25+
|region|String|Query|The regional settings for workbook.|
26+
|pageWideFitOnPerSheet|Boolean|Query|The page wide fit on worksheet.|
27+
|pageTallFitOnPerSheet|Boolean|Query|The page tall fit on worksheet.|
2828

2929

3030
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/ConversionController/GetWorkbook) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **getWorksheetAutoFilter API**
22

3-
3+
Retrieve the description of auto filters from a worksheet.
44

55
```bash
66

@@ -12,10 +12,10 @@ GET http://api.aspose.cloud/v3.0//cells/{name}/worksheets/{sheetName}/autoFilter
1212

1313
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
1414
| :- | :- | :- |:- |
15-
|name|String|Path||
16-
|sheetName|String|Path||
17-
|folder|String|Query||
18-
|storageName|String|Query||
15+
|name|String|Path|The workbook name.|
16+
|sheetName|String|Path|The worksheet name.|
17+
|folder|String|Query|The folder where the file is situated.|
18+
|storageName|String|Query|The storage name where the file is situated.|
1919

2020

2121
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/AutoFilterController/GetWorksheetAutoFilter) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

0 commit comments

Comments
 (0)