Skip to content

Commit d585beb

Browse files
committed
Release Aspose.Cells Cloud 24.9.
1 parent 874f38a commit d585beb

26 files changed

+535
-59
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
require 'openssl'
2+
require 'bundler'
3+
require 'aspose_cells_cloud'
4+
5+
@instance = AsposeCellsCloud::CellsApi.new(ENV['CellsCloudClientId'], ENV['CellsCloudClientSecret'],'v3.0',ENV['CellsCloudApiBaseUrl'])
6+
7+
remote_folder = 'TestData/In'
8+
9+
local_name = 'BookText.xlsx'
10+
remote_name = 'BookText.xlsx'
11+
12+
13+
mapFiles = { }
14+
mapFiles[local_name] = ::File.open(File.expand_path("TestData/"+local_name),"r")
15+
16+
uploadrequest = AsposeCellsCloud::UploadFileRequest.new( { :UploadFiles=>mapFiles,:path=>remote_folder })
17+
@instance.upload_file(uploadrequest)
18+
wordCaseOptionsDataSource = AsposeCellsCloud::DataSource.new(:DataSourceType=>'CloudFileSystem' ,:DataPath=>'BookText.xlsx' );
19+
wordCaseOptionsScopeOptions = AsposeCellsCloud::ScopeOptions.new(:Scope=>'EntireWorkbook' );
20+
wordCaseOptions = AsposeCellsCloud::WordCaseOptions.new(:DataSource=>wordCaseOptionsDataSource ,:WordCaseType=>'None' ,:ScopeOptions=>wordCaseOptionsScopeOptions );
21+
request = AsposeCellsCloud::PostUpdateWordCaseRequest.new(:wordCaseOptions=>wordCaseOptions);
22+
@instance.post_update_word_case(request);

Examples/Example_PostWorkbookDataDeduplication.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
uploadrequest = AsposeCellsCloud::UploadFileRequest.new( { :UploadFiles=>mapFiles,:path=>remote_folder })
1717
@instance.upload_file(uploadrequest)
18-
deduplicationRegion = AsposeCellsCloud::DeduplicationRegion.new();
18+
deduplicationRegionRanges = [
19+
];
20+
deduplicationRegion = AsposeCellsCloud::DeduplicationRegion.new(:Ranges=>deduplicationRegionRanges );
1921
request = AsposeCellsCloud::PostWorkbookDataDeduplicationRequest.new(:name=>remote_name,:deduplicationRegion=>deduplicationRegion,:folder=>remote_folder,:storageName=>'');
2022
@instance.post_workbook_data_deduplication(request);

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) ![Gem](https://img.shields.io/gem/v/aspose_cells_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_cells_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-ruby)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-ruby/24.8)
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Gem](https://img.shields.io/gem/v/aspose_cells_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_cells_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-ruby)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-ruby/24.9)
22

33

44
Aspose.Cells Cloud for Ruby 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.
@@ -22,11 +22,12 @@ Enhance your Ruby applications with the [Aspose.Cells Cloud](https://products.as
2222
- 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.
2323

2424

25-
## Feature & Enhancements in Version 24.8
25+
## Feature & Enhancements in Version 24.9
2626

2727
Full list of issues covering all changes in this release:
2828

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

3132
## Support file format
3233

@@ -125,6 +126,10 @@ request = AsposeCellsCloud::PutConvertWorkbookRequest.new(:File=>mapFiles,:for
125126

126127
# Release history version
127128

129+
## Enhancements in Version 24.8
130+
131+
- Add text trim feature on Cells Cloud Services.
132+
128133
## Enhancements in Version 24.7
129134

130135
- 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)