Skip to content

Commit 7d2d69b

Browse files
committed
Add features for formula error check and external reference checks in Excel files.
1 parent cc3a8f6 commit 7d2d69b

File tree

655 files changed

+2674
-678
lines changed

Some content is hidden

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

655 files changed

+2674
-678
lines changed

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.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# **checkWorkbookFormulaErrors API**
2+
3+
4+
5+
```bash
6+
7+
POST http://api.aspose.cloud/v3.0//cells/checkformulaerrors
8+
9+
```
10+
11+
## The request parameters of **checkWorkbookFormulaErrors** API are:
12+
13+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
14+
| :- | :- | :- |:- |
15+
|formulaErrorOptions|Class|Body||
16+
17+
18+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/DataCheckingController/CheckWorkbookFormulaErrors) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# **checkWrokbookExternalReference API**
2+
3+
Export Excel internal elements or the workbook itself to various format files.
4+
5+
```bash
6+
7+
POST http://api.aspose.cloud/v3.0//cells/checkexternalreference
8+
9+
```
10+
11+
## The request parameters of **checkWrokbookExternalReference** API are:
12+
13+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
14+
| :- | :- | :- |:- |
15+
|checkExternalReferenceOptions|Class|Body||
16+
17+
18+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/DataCheckingController/CheckWrokbookExternalReference) 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-workbook.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ GET http://api.aspose.cloud/v3.0//cells/{name}
2525
|region|String|Query|The regional settings for workbook.|
2626
|pageWideFitOnPerSheet|Boolean|Query|The page wide fit on worksheet.|
2727
|pageTallFitOnPerSheet|Boolean|Query|The page tall fit on worksheet.|
28+
|FontsLocation|String|Query|Use Custom fonts.|
2829

2930

3031
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.

docs/api/get-worksheet-with-format.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ GET http://api.aspose.cloud/v3.0//cells/{name}/worksheets/{sheetName}
1919
|horizontalResolution|Integer|Query|Image horizontal resolution.|
2020
|area|String|Query|Represents the range to be printed.|
2121
|pageIndex|Integer|Query|Represents the page to be printed|
22+
|onePagePerSheet|Boolean|Query||
23+
|printHeadings|Boolean|Query||
2224
|folder|String|Query|The folder where the file is situated.|
2325
|storageName|String|Query|The storage name where the file is situated.|
2426

docs/api/post-add-text-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **postAddTextContent API**
22

3-
3+
Adds text content to a workbook at specified positions within cells based on provided options using ASP.NET Core Web API.
44

55
```bash
66

docs/api/post-character-count.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# **postCharacterCount API**
2+
3+
4+
5+
```bash
6+
7+
POST http://api.aspose.cloud/v3.0//cells/charactercount
8+
9+
```
10+
11+
## The request parameters of **postCharacterCount** API are:
12+
13+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
14+
| :- | :- | :- |:- |
15+
|characterCountOptions|Class|Body||
16+
17+
18+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/StatisticalCharactersController/PostCharacterCount) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

docs/api/post-convert-workbook-to-docx.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ POST http://api.aspose.cloud/v3.0//cells/convert/docx
1616
|password|String|Query|The password needed to open an Excel file.|
1717
|checkExcelRestriction|Boolean|Query|Whether check restriction of excel file when user modify cells related objects.|
1818
|region|String|Query|The regional settings for workbook.|
19+
|FontsLocation|String|Query|Use Custom fonts.|
1920

2021

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

docs/api/post-convert-workbook-to-html.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ POST http://api.aspose.cloud/v3.0//cells/convert/html
1616
|password|String|Query|The password needed to open an Excel file.|
1717
|checkExcelRestriction|Boolean|Query|Whether check restriction of excel file when user modify cells related objects.|
1818
|region|String|Query|The regional settings for workbook.|
19+
|FontsLocation|String|Query|Use Custom fonts.|
1920

2021

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

0 commit comments

Comments
 (0)