Skip to content

Commit e750fc2

Browse files
committed
Release Aspose.Cells Cloud 24.9.
1 parent 8651cab commit e750fc2

24 files changed

+871
-68
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
require_once('vendor\autoload.php');
3+
use \Aspose\Cells\Cloud\Api\CellsApi;
4+
use \Aspose\Cells\Cloud\Request\PostUpdateWordCaseRequest;
5+
6+
$cellsApi = new CellsApi(getenv("CellsCloudClientId"),getenv("CellsCloudClientSecret"),"v3.0",getenv("CellsCloudApiBaseUrl"));
7+
8+
$remoteFolder = "TestData/In";
9+
10+
$localName = "BookText.xlsx";
11+
$remoteName = "BookText.xlsx";
12+
13+
$wordCaseOptionsDataSource = new \Aspose\Cells\Cloud\Model\DataSource();
14+
$wordCaseOptionsDataSource->setDataSourceType("CloudFileSystem" );
15+
$wordCaseOptionsDataSource->setDataPath("BookText.xlsx" );
16+
$wordCaseOptionsScopeOptions = new \Aspose\Cells\Cloud\Model\ScopeOptions();
17+
$wordCaseOptionsScopeOptions->setScope("EntireWorkbook" );
18+
$wordCaseOptions = new \Aspose\Cells\Cloud\Model\WordCaseOptions();
19+
$wordCaseOptions->setDataSource($wordCaseOptionsDataSource );
20+
$wordCaseOptions->setWordCaseType("None" );
21+
$wordCaseOptions->setScopeOptions($wordCaseOptionsScopeOptions );
22+
CellsApiTestBase::ready( $this->instance,$localName ,$remoteFolder . "/" . $remoteName , "");
23+
24+
$request = new PostUpdateWordCaseRequest();
25+
$request->setWordCaseOptions( $wordCaseOptions);
26+
$$cellsApi->postUpdateWordCase($request);

Examples/Example_PostWorkbookDataDeduplication.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
$localName = "BookCsvDuplicateData.csv";
1111
$remoteName = "BookCsvDuplicateData.csv";
1212

13+
$deduplicationRegionRanges = array (
14+
);
1315
$deduplicationRegion = new \Aspose\Cells\Cloud\Model\DeduplicationRegion();
14-
16+
$deduplicationRegion->setRanges($deduplicationRegionRanges );
1517
CellsApiTestBase::ready( $this->instance,$localName ,$remoteFolder . "/" . $remoteName , "");
1618

1719
$request = new PostWorkbookDataDeduplicationRequest();

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Packagist Version](https://img.shields.io/packagist/v/aspose/cells-sdk-php) ![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/aspose/cells-sdk-php) ![Packagist Downloads](https://img.shields.io/packagist/dt/aspose/cells-sdk-php) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-php/24.8)
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Packagist Version](https://img.shields.io/packagist/v/aspose/cells-sdk-php) ![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/aspose/cells-sdk-php) ![Packagist Downloads](https://img.shields.io/packagist/dt/aspose/cells-sdk-php) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-php/24.9)
22

33
Aspose.Cells Cloud for PHP enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
44

@@ -19,11 +19,12 @@ Enhance your PHP applications with the [Aspose.Cells Cloud](https://products.asp
1919
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
2020
- 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.
2121

22-
## Feature & Enhancements in Version 24.8
22+
## Feature & Enhancements in Version 24.9
2323

2424
Full list of issues covering all changes in this release:
2525

26-
- Add text trim feature on Cells Cloud Services.
26+
- Add word case function for TextProcessingController.
27+
- Support to export Worksheet to HTML with cell address or id.
2728

2829
## Support file format
2930

@@ -137,6 +138,10 @@ $$cellsApi->putConvertWorkbook($request);
137138

138139
# Release history version
139140

141+
## Enhancements in Version 24.8
142+
143+
- Add text trim feature on Cells Cloud Services.
144+
140145
## Enhancements in Version 24.7
141146

142147
- Add a new feature about adding text content.

docs/HtmlSaveOptions.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,13 @@ Name | Type | Description | Notes
4040
**ExportActiveWorksheetOnly** | **boolean** | Indicates if exporting the whole workbook to html file. |
4141
**ExportChartImageFormat** | **string** | Get or set the format of chart image before exporting |
4242
**ExportImagesAsBase64** | **boolean** | |
43-
**HiddenColDisplayType** | **string** | Hidden column(the width of this column is 0) in excel,before save this into html format, if HtmlHiddenColDisplayType is "Remove",the hidden column would ont been output, if the value is "Hidden", the column would been output,but was hidden,the default value is "Hidden" |
44-
**HiddenRowDisplayType** | **string** | Hidden row(the height of this row is 0) in excel,before save this into html format, if HtmlHiddenRowDisplayType is "Remove",the hidden row would ont been output, if the value is "Hidden", the row would been output,but was hidden,the default value is "Hidden" |
43+
**HiddenColDisplayType** | **string** | Hidden column(the width of this column is 0) in excel,before save this into html format, if HtmlHiddenColDisplayType is "Remove",the hidden column would ont been output, if the value is "Hidden", the column would been output,but was hidden,the default value is "Hidden" |
44+
**HiddenRowDisplayType** | **string** | Hidden row(the height of this row is 0) in excel,before save this into html format, if HtmlHiddenRowDisplayType is "Remove",the hidden row would ont been output, if the value is "Hidden", the row would been output,but was hidden,the default value is "Hidden" |
4545
**HtmlCrossStringType** | **string** | Indicates if a cross-cell string will be displayed in the same way as MS Excel when saving an Excel file in html format. By default the value is Default, so, for cross-cell strings, there is little difference between the html files created by Aspose.Cells and MS Excel. But the performance for creating large html files,setting the value to Cross would be several times faster than setting it to Default or Fit2Cell. |
4646
**IsExpImageToTempDir** | **boolean** | Indicates if export image files to temp directory. Only for saving to html stream. |
4747
**PageTitle** | **string** | The title of the html page. Only for saving to html stream. |
4848
**ParseHtmlTagInCell** | **boolean** | Parse html tag in cell,like ,as cell value,or as html tag,default is true |
49+
**CellNameAttribute** | **string** | |
4950
**SaveFormat** | **string** | |
5051
**CachedFileFolder** | **string** | |
5152
**ClearData** | **boolean** | |

docs/PostUpdateWordCaseRequest.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# AsposeCellsCloud::Request::PostUpdateWordCase
2+
3+
## Load the model package
4+
```perl
5+
use AsposeCellsCloud::Request::PostUpdateWordCase;
6+
```
7+
8+
## Properties
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**word_case_options** | **WordCaseOptions** | |
12+
13+
[[Back to Model list]](../README.md#documentation-for-requests) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
14+

docs/ProtectWorkbookRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**AwaysOpenReadOnly** | **boolean** | Indicates aways open read-only. |
1212
**EncryptWithPassword** | **string** | Indicates encrypt with password. |
1313
**ProtectCurrentSheet** | **Protection** | Represents the various types of protection options available for a worksheet. |
14+
**ProtectAllSheets** | **Protection** | Represents the various types of protection options available for all worksheets. |
1415
**ProtectWorkbookStructure** | **string** | Indicates protect workbook structure. All, Contents, Objects, Scenarios, Structure, Windows, and None. |
1516
**DigitalSignature** | **DigitalSignature** | Indicates signature in file. |
1617
**MarkAsFinal** | **boolean** | Indicates mark as final. |

docs/PutConvertWorkbookRequest.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ Name | Type | Description | Notes
1717
**stream_format** | **string** | The format of the input file stream. |
1818
**region** | **string** | The regional settings for workbook. |
1919
**page_wide_fit_on_per_sheet** | **boolean** | The page wide fit on worksheet. |
20-
**page_tall_fit_on_per_sheet** | **boolean** | The page tall fit on worksheet. |
20+
**page_tall_fit_on_per_sheet** | **boolean** | The page tall fit on worksheet. |
21+
**sheet_name** | **string** | |
22+
**page_index** | **int** | |
2123

2224
[[Back to Model list]](../README.md#documentation-for-requests) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2325

docs/PutWorkbookBackgroundRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
------------ | ------------- | ------------- | -------------
1111
**name** | **string** | The file name. |
1212
**pic_path** | **string** | The picture full path. |
13+
**image_adapt_option** | **string** | |
1314
**folder** | **string** | The folder where the file is situated. |
1415
**storage_name** | **string** | The storage name where the file is situated. |
1516
**file** | **string** | File to upload |

docs/PutWorksheetBackgroundRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**name** | **string** | The file name. |
1212
**sheet_name** | **string** | The worksheet name. |
1313
**pic_path** | **string** | picture full filename. |
14+
**image_adapt_option** | **string** | |
1415
**folder** | **string** | The folder where the file is situated. |
1516
**storage_name** | **string** | The storage name where the file is situated. |
1617
**file** | **string** | File to upload |

docs/TextWaterMarkerRequest.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Name | Type | Description | Notes
1212
**FontName** | **string** | Indicates font name. |
1313
**FontSize** | **int** | Indicates font size. |
1414
**Height** | **int** | Indicates image height. |
15-
**Width** | **int** | Indicates image width. |
15+
**Width** | **int** | Indicates image width. |
16+
**ImageAdaptOption** | **string** | |
1617

1718
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1819

0 commit comments

Comments
 (0)