aspose_cells_cloud 26.4 → 26.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -5
- data/lib/aspose_cells_cloud/api/cells_api.rb +102 -0
- data/lib/aspose_cells_cloud/models/ebook_save_options.rb +822 -0
- data/lib/aspose_cells_cloud/models/formula_calculate_result_response.rb +258 -0
- data/lib/aspose_cells_cloud/requests/add_text_in_remote_spreadsheet_request.rb +196 -0
- data/lib/aspose_cells_cloud/requests/calculation_formula_request.rb +147 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_text_in_remote_spreadsheet_request.rb +184 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_range_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_spreadsheet_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_table_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_worksheet_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/get_spreadsheet_structure_request.rb +123 -0
- data/lib/aspose_cells_cloud/requests/get_structure_in_remote_spreadsheet_request.rb +134 -0
- data/lib/aspose_cells_cloud/requests/remove_characters_by_position_in_remote_spreadsheet_request.rb +196 -0
- data/lib/aspose_cells_cloud/requests/remove_characters_in_remote_spreadsheet_request.rb +188 -0
- data/lib/aspose_cells_cloud/requests/remove_duplicate_substrings_in_remote_spreadsheet_request.rb +184 -0
- data/lib/aspose_cells_cloud/requests/report_ai_analysis_request.rb +122 -0
- data/lib/aspose_cells_cloud/requests/save_spreadsheet_as_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/smart_marker_template_request.rb +107 -0
- data/lib/aspose_cells_cloud/requests/summarize_spreadsheet_request.rb +123 -0
- data/lib/aspose_cells_cloud/requests/trim_character_in_remote_spreadsheet_request.rb +212 -0
- data/lib/aspose_cells_cloud/requests/update_word_case_in_remote_spreadsheet_request.rb +168 -0
- data/lib/aspose_cells_cloud/version.rb +1 -1
- data/lib/aspose_cells_cloud.rb +15 -0
- data/spec/TestData/AggregateCellsByColor.xlsx +0 -0
- data/spec/TestData/Book1.xlsx +0 -0
- data/spec/TestData/BookCsvDuplicateData.csv +21 -0
- data/spec/TestData/BookDuplicateData.xlsx +0 -0
- data/spec/TestData/BookFormula.xlsx +0 -0
- data/spec/TestData/BookTableL2W.xlsx +0 -0
- data/spec/TestData/BookText.xlsx +0 -0
- data/spec/TestData/CompanySales.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary-BlankWorksheet.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary_Locked.xlsx +0 -0
- data/spec/TestData/Formula tutorial.xlsx +0 -0
- data/spec/TestData/Group.xlsx +0 -0
- data/spec/TestData/Home inventory.xlsx +0 -0
- data/spec/TestData/LockedEmployeeSalesSummary.xlsx +0 -0
- data/spec/TestData/OLEDoc.docx +0 -0
- data/spec/TestData/ReportData.xml +1 -0
- data/spec/TestData/Simple invoice.xlsx +0 -0
- data/spec/TestData/Template.xlsx +0 -0
- data/spec/TestData/TestCase.xlsx +0 -0
- data/spec/TestData/TestTables.xlsx +0 -0
- data/spec/TestData/WaterMark.png +0 -0
- data/spec/TestData/assemblytest.xlsx +0 -0
- data/spec/TestData/data.xml +1 -0
- data/spec/TestData/datasource.xlsx +0 -0
- data/spec/TestData/myDocument.xlsx +0 -0
- data/spec/TestData/needUnlock.xlsx +0 -0
- data/spec/TestData/needlock.xlsx +0 -0
- data/spec/TestData/roywang.pfx +0 -0
- data/spec/TestData/word.jpg +0 -0
- data/spec/calculate/calculate_spec.rb +29 -0
- data/spec/cells_cloud30/auto_filter_controller_spec.rb +211 -0
- data/spec/cells_cloud30/batch_controller_spec.rb +113 -0
- data/spec/cells_cloud30/cells_controller_spec.rb +627 -0
- data/spec/cells_cloud30/cells_status_controller_spec.rb +43 -0
- data/spec/cells_cloud30/chart_area_controller_spec.rb +58 -0
- data/spec/cells_cloud30/charts_controller_spec.rb +227 -0
- data/spec/cells_cloud30/conditional_formattings_controller_spec.rb +149 -0
- data/spec/cells_cloud30/conversion30_spec.rb +1112 -0
- data/spec/cells_cloud30/data_processing_controller_spec.rb +97 -0
- data/spec/cells_cloud30/hypelinks_controller_spec.rb +104 -0
- data/spec/cells_cloud30/light_cells_spec.rb +1059 -0
- data/spec/cells_cloud30/list_objects_controller_spec.rb +225 -0
- data/spec/cells_cloud30/ole_objects_controller_spec.rb +108 -0
- data/spec/cells_cloud30/page_breaks_controller_spec.rb +163 -0
- data/spec/cells_cloud30/page_setup_controller_spec.rb +149 -0
- data/spec/cells_cloud30/pictures_controller_spec.rb +106 -0
- data/spec/cells_cloud30/pivot_tables_controller_spec.rb +312 -0
- data/spec/cells_cloud30/properties_controller_spec.rb +89 -0
- data/spec/cells_cloud30/ranges_controller_spec.rb +227 -0
- data/spec/cells_cloud30/shapes_controller_spec.rb +139 -0
- data/spec/cells_cloud30/sparkline_groups_controller_spec.rb +104 -0
- data/spec/cells_cloud30/text_processing_controller_spec.rb +67 -0
- data/spec/cells_cloud30/workbook_controller_spec.rb +519 -0
- data/spec/cells_cloud30/worksheet_controller_spec.rb +609 -0
- data/spec/cells_cloud30/worksheet_validations_controller_spec.rb +104 -0
- data/spec/cells_cloud30/xml_controller_spec.rb +48 -0
- data/spec/data_processing/conversion_spec.rb +428 -0
- data/spec/data_processing/import_data_spec.rb +24 -0
- data/spec/data_processing/merger_spec.rb +28 -0
- data/spec/data_processing/protection_spec.rb +29 -0
- data/spec/data_processing/splitter_spec.rb +47 -0
- data/spec/data_processing/transform_spec.rb +43 -0
- data/spec/dynabic/file_controller_spec.rb +60 -0
- data/spec/dynabic/folder_controller_spec.rb +88 -0
- data/spec/dynabic/storage_controller_spec.rb +73 -0
- data/spec/management/management_spec.rb +111 -0
- data/spec/search2_replace/replacer_spec.rb +46 -0
- data/spec/search2_replace/searcher_spec.rb +131 -0
- data/spec/spec_helper.rb +134 -0
- data/spec/text_processing/add_text_spec.rb +45 -0
- data/spec/text_processing/convert_text_spec.rb +37 -0
- data/spec/text_processing/extract_text_spec.rb +37 -0
- data/spec/text_processing/remove_characters_spec.rb +53 -0
- data/spec/text_processing/split_text_spec.rb +21 -0
- data/spec/text_processing/trim_spreadsheet_spec.rb +29 -0
- data/spec/text_processing/update_word_case_spec.rb +37 -0
- metadata +95 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83a29ec36ce4d6f562910298cfdd1d2690c545ff348b1215b2ef78bc9dbcdd7f
|
|
4
|
+
data.tar.gz: e0978fddf5513e1ee9c91065bc261dbba7c3d8d2f647a900d4ccca0a880f9bcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29d5bde8d326ed097bd6ae4689c30363e6c1dc120b544261e4a940e423d041aefc1c7d1389bdb4a1785e36f1a9ea6a40767a28741fb98247e20091e97538ac38
|
|
7
|
+
data.tar.gz: 37ddebb79fd48aae9b367f9b2e8f4ab393f5aef783484d2f3688873536a4af8d170148e4cfe89f3a9d12fd3e5035e853bafd0b3830fd3517ab4af56b93325d1e
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
 [](https://products.aspose.cloud/cells/ruby/) [](https://docs.aspose.cloud/cells/) [](https://reference.aspose.cloud/cells/) [](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl/tree/master/Examples) [](https://blog.aspose.cloud/categories/aspose.cells-cloud-product-family/) [](https://forum.aspose.cloud/c/cells/7) [](https://rubygems.org/gems/aspose_cells_cloud) [](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/archive/refs/heads/master.zip) [](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) 
|
|
2
2
|
|
|
3
3
|
[Aspose.Cells Cloud SDK for Ruby](https://products.aspose.cloud/cells/ruby) is a cloud-native REST API that enables Ruby developers to **create**, **read**, **edit**, **convert**, and **repair** spreadsheet files—including **Excel** (**XLS**, **XLSX**, **XLSB**, **XLSM**), **OpenDocument Spreadsheet (ODS**), **CSV**, **TSV**, **JSON**, **HTML**, **PDF**, and **more—without requiring Microsoft Excel or Office to be installed**.
|
|
4
4
|
|
|
@@ -22,7 +22,7 @@ To begin with Aspose.Cells Cloud, here's what you need to do:
|
|
|
22
22
|
- execute the following command to get the latest Gem package.
|
|
23
23
|
|
|
24
24
|
```console
|
|
25
|
-
gem 'aspose_cells_cloud', '~> 26.
|
|
25
|
+
gem 'aspose_cells_cloud', '~> 26.7.0'
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
or install directly
|
|
@@ -155,14 +155,16 @@ graph TB
|
|
|
155
155
|
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
|
|
156
156
|
- 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.
|
|
157
157
|
|
|
158
|
-
## Feature & Enhancements in Version v26.
|
|
158
|
+
## Feature & Enhancements in Version v26.7
|
|
159
159
|
|
|
160
160
|
Full list of issues covering all changes in this release:
|
|
161
161
|
|
|
162
162
|
| **Summary** | **Category** |
|
|
163
163
|
| :------------------------------------------------------------------------------------------------------------ | :----------- |
|
|
164
|
-
|
|
|
165
|
-
|
|
|
164
|
+
| Fix AutoFitsCanAutoFitsAttribute value data type. | Bug |
|
|
165
|
+
| Support for the calculation formula in Aspose.Cells Cloud 4.0 Web APIs. | New Feature |
|
|
166
|
+
| Support for the smart template in Aspose.Cells Cloud 4.0 Web APIs. | New Feature |
|
|
167
|
+
| Fix calc error about MathCalculate Web API. | Bug |
|
|
166
168
|
|
|
167
169
|
## Available SDKs
|
|
168
170
|
|
|
@@ -64,6 +64,22 @@ module AsposeCellsCloud
|
|
|
64
64
|
return data
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
+
# Intelligently analyzes spreadsheet data, identifies business scenarios, and generates professional data analysis reports.
|
|
68
|
+
|
|
69
|
+
def report_ai_analysis( report_ai_analysis_request, opts = {})
|
|
70
|
+
|
|
71
|
+
data, _status_code, _headers = report_ai_analysis_request.create_http_request(@api_client,opts )
|
|
72
|
+
return data
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
# Summarizes spreadsheet content using AI and returns the summary as a downloadable text file.
|
|
76
|
+
|
|
77
|
+
def summarize_spreadsheet( summarize_spreadsheet_request, opts = {})
|
|
78
|
+
|
|
79
|
+
data, _status_code, _headers = summarize_spreadsheet_request.create_http_request(@api_client,opts )
|
|
80
|
+
return data
|
|
81
|
+
end
|
|
82
|
+
|
|
67
83
|
# The Aggregate by Color API provides a convenient way to perform calculations on cells that share the same fill or font color. This API supports a range of aggregate operations, including count, sum, maximum value, minimum value, and average value, enabling you to analyze and summarize data based on color distinctions.
|
|
68
84
|
|
|
69
85
|
def aggregate_cells_by_color( aggregate_cells_by_color_request, opts = {})
|
|
@@ -79,6 +95,13 @@ module AsposeCellsCloud
|
|
|
79
95
|
return data
|
|
80
96
|
end
|
|
81
97
|
|
|
98
|
+
|
|
99
|
+
def calculation_formula( calculation_formula_request, opts = {})
|
|
100
|
+
|
|
101
|
+
data, _status_code, _headers = calculation_formula_request.create_http_request(@api_client,opts )
|
|
102
|
+
return data
|
|
103
|
+
end
|
|
104
|
+
|
|
82
105
|
# Get Access Token Result: The Cells Cloud Get Token API acts as a proxy service,
|
|
83
106
|
# forwarding user requests to the Aspose Cloud authentication server and returning the resulting access token to the client.
|
|
84
107
|
|
|
@@ -510,6 +533,22 @@ module AsposeCellsCloud
|
|
|
510
533
|
return data
|
|
511
534
|
end
|
|
512
535
|
|
|
536
|
+
# Structurally convert the core metadata, worksheets, tables, pivot tables, charts, shapes, and other information of an Excel workbook into a JObject type JSON object, for scenarios such as data export, API responses, and log recording.
|
|
537
|
+
|
|
538
|
+
def get_spreadsheet_structure( get_spreadsheet_structure_request, opts = {})
|
|
539
|
+
|
|
540
|
+
data, _status_code, _headers = get_spreadsheet_structure_request.create_http_request(@api_client,opts )
|
|
541
|
+
return data
|
|
542
|
+
end
|
|
543
|
+
|
|
544
|
+
# Structurally convert the core metadata, worksheets, tables, pivot tables, charts, shapes, and other information of an Excel workbook into a JObject type JSON object, for scenarios such as data export, API responses, and log recording.
|
|
545
|
+
|
|
546
|
+
def get_structure_in_remote_spreadsheet( get_structure_in_remote_spreadsheet_request, opts = {})
|
|
547
|
+
|
|
548
|
+
data, _status_code, _headers = get_structure_in_remote_spreadsheet_request.create_http_request(@api_client,opts )
|
|
549
|
+
return data
|
|
550
|
+
end
|
|
551
|
+
|
|
513
552
|
# Applies dual-layer password protection to Excel spreadsheets, supporting both open and modify passwords with encryption.
|
|
514
553
|
|
|
515
554
|
def protect_spreadsheet( protect_spreadsheet_request, opts = {})
|
|
@@ -533,6 +572,13 @@ module AsposeCellsCloud
|
|
|
533
572
|
return data
|
|
534
573
|
end
|
|
535
574
|
|
|
575
|
+
|
|
576
|
+
def smart_marker_template( smart_marker_template_request, opts = {})
|
|
577
|
+
|
|
578
|
+
data, _status_code, _headers = smart_marker_template_request.create_http_request(@api_client,opts )
|
|
579
|
+
return data
|
|
580
|
+
end
|
|
581
|
+
|
|
536
582
|
# Get all text items in the remote spreadsheet.
|
|
537
583
|
|
|
538
584
|
def search_all_text_items_in_remote_spreadsheet( search_all_text_items_in_remote_spreadsheet_request, opts = {})
|
|
@@ -662,6 +708,14 @@ module AsposeCellsCloud
|
|
|
662
708
|
|
|
663
709
|
# The TrimSpreadsheetContent API is designed to process and trim content within a spreadsheet. This API allows users to remove extra spaces, line breaks, or other unnecessary characters from the content of selected cells. It is particularly useful for cleaning up data entries and ensuring consistency in spreadsheet formatting
|
|
664
710
|
|
|
711
|
+
def trim_character_in_remote_spreadsheet( trim_character_in_remote_spreadsheet_request, opts = {})
|
|
712
|
+
|
|
713
|
+
data, _status_code, _headers = trim_character_in_remote_spreadsheet_request.create_http_request(@api_client,opts )
|
|
714
|
+
return data
|
|
715
|
+
end
|
|
716
|
+
|
|
717
|
+
# The TrimSpreadsheetContent API is designed to process and trim content within a remote spreadsheet. This API allows users to remove extra spaces, line breaks, or other unnecessary characters from the content of selected cells. It is particularly useful for cleaning up data entries and ensuring consistency in spreadsheet formatting
|
|
718
|
+
|
|
665
719
|
def trim_character( trim_character_request, opts = {})
|
|
666
720
|
|
|
667
721
|
data, _status_code, _headers = trim_character_request.create_http_request(@api_client,opts )
|
|
@@ -676,6 +730,14 @@ module AsposeCellsCloud
|
|
|
676
730
|
return data
|
|
677
731
|
end
|
|
678
732
|
|
|
733
|
+
# Specify changing the text case in a remote spreadsheet to switch between uppercase, lowercase, capitalizing the first letter of each word, or capitalizing the first letter of a sentence, and adjust the text according to specific needs.
|
|
734
|
+
|
|
735
|
+
def update_word_case_in_remote_spreadsheet( update_word_case_in_remote_spreadsheet_request, opts = {})
|
|
736
|
+
|
|
737
|
+
data, _status_code, _headers = update_word_case_in_remote_spreadsheet_request.create_http_request(@api_client,opts )
|
|
738
|
+
return data
|
|
739
|
+
end
|
|
740
|
+
|
|
679
741
|
# Deletes user-defined characters, predefined symbol sets, or any substring from every cell in the chosen range while preserving formulas, formatting and data-validation.
|
|
680
742
|
|
|
681
743
|
def remove_characters( remove_characters_request, opts = {})
|
|
@@ -684,6 +746,14 @@ module AsposeCellsCloud
|
|
|
684
746
|
return data
|
|
685
747
|
end
|
|
686
748
|
|
|
749
|
+
# Deletes user-defined characters, predefined symbol sets, or any substring from every cell in the chosen range while preserving formulas, formatting and data-validation for a remote spreadsheet.
|
|
750
|
+
|
|
751
|
+
def remove_characters_in_remote_spreadsheet( remove_characters_in_remote_spreadsheet_request, opts = {})
|
|
752
|
+
|
|
753
|
+
data, _status_code, _headers = remove_characters_in_remote_spreadsheet_request.create_http_request(@api_client,opts )
|
|
754
|
+
return data
|
|
755
|
+
end
|
|
756
|
+
|
|
687
757
|
# Deletes characters from every cell in the target range by position (first/last N, before/after a substring, or between two delimiters) while preserving formulas, formatting and data-validation.
|
|
688
758
|
|
|
689
759
|
def remove_characters_by_position( remove_characters_by_position_request, opts = {})
|
|
@@ -692,6 +762,14 @@ module AsposeCellsCloud
|
|
|
692
762
|
return data
|
|
693
763
|
end
|
|
694
764
|
|
|
765
|
+
# Deletes characters from every cell in the target range by position (first/last N, before/after a substring, or between two delimiters) while preserving formulas, formatting and data-validation.
|
|
766
|
+
|
|
767
|
+
def remove_characters_by_position_in_remote_spreadsheet( remove_characters_by_position_in_remote_spreadsheet_request, opts = {})
|
|
768
|
+
|
|
769
|
+
data, _status_code, _headers = remove_characters_by_position_in_remote_spreadsheet_request.create_http_request(@api_client,opts )
|
|
770
|
+
return data
|
|
771
|
+
end
|
|
772
|
+
|
|
695
773
|
# Finds and removes repeated substrings inside every cell of the chosen range, using user-defined or preset delimiters, while preserving formulas, formatting and data-validation.
|
|
696
774
|
|
|
697
775
|
def remove_duplicate_substrings( remove_duplicate_substrings_request, opts = {})
|
|
@@ -700,6 +778,14 @@ module AsposeCellsCloud
|
|
|
700
778
|
return data
|
|
701
779
|
end
|
|
702
780
|
|
|
781
|
+
# Finds and removes repeated substrings inside every cell of the chosen range, using user-defined or preset delimiters, while preserving formulas, formatting and data-validation.
|
|
782
|
+
|
|
783
|
+
def remove_duplicate_substrings_in_remote_spreadsheet( remove_duplicate_substrings_in_remote_spreadsheet_request, opts = {})
|
|
784
|
+
|
|
785
|
+
data, _status_code, _headers = remove_duplicate_substrings_in_remote_spreadsheet_request.create_http_request(@api_client,opts )
|
|
786
|
+
return data
|
|
787
|
+
end
|
|
788
|
+
|
|
703
789
|
# Specify appending text to multiple cells at once, allowing you to add prefixes, suffixes, labels, or any specific characters. You can choose the exact position of the text—in the beginning, at the end, or before or after certain characters in the cell.
|
|
704
790
|
|
|
705
791
|
def add_text( add_text_request, opts = {})
|
|
@@ -708,6 +794,14 @@ module AsposeCellsCloud
|
|
|
708
794
|
return data
|
|
709
795
|
end
|
|
710
796
|
|
|
797
|
+
# Specify appending text to multiple cells at once, allowing you to add prefixes, suffixes, labels, or any specific characters. You can choose the exact position of the text—in the beginning, at the end, or before or after certain characters in the cell.
|
|
798
|
+
|
|
799
|
+
def add_text_in_remote_spreadsheet( add_text_in_remote_spreadsheet_request, opts = {})
|
|
800
|
+
|
|
801
|
+
data, _status_code, _headers = add_text_in_remote_spreadsheet_request.create_http_request(@api_client,opts )
|
|
802
|
+
return data
|
|
803
|
+
end
|
|
804
|
+
|
|
711
805
|
# Indicates converting the numbers stored as text into the correct number format, replacing unwanted characters and line breaks with the desired characters, and converting accented characters to their equivalent characters without accents.
|
|
712
806
|
|
|
713
807
|
def convert_text( convert_text_request, opts = {})
|
|
@@ -716,6 +810,14 @@ module AsposeCellsCloud
|
|
|
716
810
|
return data
|
|
717
811
|
end
|
|
718
812
|
|
|
813
|
+
# Indicates converting the numbers stored as text into the correct number format, replacing unwanted characters and line breaks with the desired characters, and converting accented characters to their equivalent characters without accents.
|
|
814
|
+
|
|
815
|
+
def convert_text_in_remote_spreadsheet( convert_text_in_remote_spreadsheet_request, opts = {})
|
|
816
|
+
|
|
817
|
+
data, _status_code, _headers = convert_text_in_remote_spreadsheet_request.create_http_request(@api_client,opts )
|
|
818
|
+
return data
|
|
819
|
+
end
|
|
820
|
+
|
|
719
821
|
# Indicates extracting substrings, text characters, and numbers from a spreadsheet cell into another cell without having to use complex FIND, MIN, LEFT, or RIGHT formulas.
|
|
720
822
|
|
|
721
823
|
def extract_text( extract_text_request, opts = {})
|