diff --git a/Aspose.Cells.Cloud.SDK.Test/Api/CellsStatusControllerTests.cs b/Aspose.Cells.Cloud.SDK.Test/Api/CellsStatusControllerTests.cs index 7e4bc63b..71f64623 100644 --- a/Aspose.Cells.Cloud.SDK.Test/Api/CellsStatusControllerTests.cs +++ b/Aspose.Cells.Cloud.SDK.Test/Api/CellsStatusControllerTests.cs @@ -52,7 +52,7 @@ public void TestGetCellsCloudServicesHealthCheck() var request = new GetCellsCloudServicesHealthCheckRequest( ); var actual = this.CellsApi.GetCellsCloudServicesHealthCheck(request); - Assert.AreEqual("{\"Status\":\"Cells Cloud(v24.9.0) is working fine!\"}", actual); + Assert.AreEqual("{\"Status\":\"Cells Cloud(v24.11.0) is working fine!\"}", actual); } /// diff --git a/Aspose.Cells.Cloud.SDK.Test/Infrastructure/CellsTestCommon.cs b/Aspose.Cells.Cloud.SDK.Test/Infrastructure/CellsTestCommon.cs index b002e759..34ef3046 100644 --- a/Aspose.Cells.Cloud.SDK.Test/Infrastructure/CellsTestCommon.cs +++ b/Aspose.Cells.Cloud.SDK.Test/Infrastructure/CellsTestCommon.cs @@ -112,7 +112,7 @@ public string GetLocalFilePath(string filename) int pos = localFolder.IndexOf("bin"); if(pos >0) { - localFolder = Path.Combine( localFolder.Substring(0, pos),"./../","TestData"); + localFolder = Path.Combine( localFolder.Substring(0, pos),"./../","TestData/CellsCloud"); } } diff --git a/Aspose.Cells.Cloud.SDK/Api/CellsApi.cs b/Aspose.Cells.Cloud.SDK/Api/CellsApi.cs index 0bcf1e27..c02fdf7a 100644 --- a/Aspose.Cells.Cloud.SDK/Api/CellsApi.cs +++ b/Aspose.Cells.Cloud.SDK/Api/CellsApi.cs @@ -6254,6 +6254,29 @@ public async Task< FileInfo > PostRemoveCharactersAsync(PostRemoveCharactersR + /// + /// + /// Request. + public FileInfo PostConvertText(PostConvertTextRequest request) + { + requestHandlers.ForEach(p => p.ProcessUrl("")); + var result = invoker.InvokeApiAsync< FileInfo >(request.CreateHttpRequest(BaseUri +"/" +Version, this.invoker.DefaultHeaderMap, this.requestHandlers)).Result; + return result; + } + + /// + /// async/await syntax calling method + /// + + public async Task< FileInfo > PostConvertTextAsync(PostConvertTextRequest request) + { + requestHandlers.ForEach(p => p.ProcessUrl("")); + var result = await invoker.InvokeApiAsync< FileInfo >(request.CreateHttpRequest(BaseUri +"/" +Version, this.invoker.DefaultHeaderMap, this.requestHandlers)); + return result; + } + + + /// /// Retrieve the description of the default style for the workbook . /// diff --git a/Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj b/Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj index 7a57d935..ad7d62a9 100644 --- a/Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj +++ b/Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj @@ -17,9 +17,9 @@ GitHub MIT false - 24.10 - 24.10 - 24.10 + 24.11 + 24.11 + 24.11 README.md diff --git a/Aspose.Cells.Cloud.SDK/Infrastructure/Invoker/ApiInvoker.cs b/Aspose.Cells.Cloud.SDK/Infrastructure/Invoker/ApiInvoker.cs index 32ca333e..2adc0422 100644 --- a/Aspose.Cells.Cloud.SDK/Infrastructure/Invoker/ApiInvoker.cs +++ b/Aspose.Cells.Cloud.SDK/Infrastructure/Invoker/ApiInvoker.cs @@ -50,7 +50,7 @@ internal class ApiInvoker internal ApiInvoker(List requestHandlers) { this.AddDefaultHeader(AsposeClientHeaderName, ".net sdk"); - this.AddDefaultHeader(AsposeClientVersionHeaderName, "24.10"); + this.AddDefaultHeader(AsposeClientVersionHeaderName, "24.11"); this.requestHandlers = requestHandlers; } diff --git a/Aspose.Cells.Cloud.SDK/Model/ConvertTextOptions.cs b/Aspose.Cells.Cloud.SDK/Model/ConvertTextOptions.cs new file mode 100644 index 00000000..cd17be72 --- /dev/null +++ b/Aspose.Cells.Cloud.SDK/Model/ConvertTextOptions.cs @@ -0,0 +1,102 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright (c) 2024 Aspose.Cells Cloud +// +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// +// -------------------------------------------------------------------------------------------------------------------- + +namespace Aspose.Cells.Cloud.SDK.Model +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Runtime.Serialization; + using System.Text; + using System.Drawing; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + + /// + /// + /// + public class ConvertTextOptions : BaseOperateOptions + { + /// + /// + /// + public override string Name { get; set; } + + /// + /// + /// + public virtual DataSource DataSource { get; set; } + + /// + /// + /// + public virtual FileInfo FileInfo { get; set; } + + /// + /// + /// + public virtual string Worksheet { get; set; } + + /// + /// + /// + public virtual string Range { get; set; } + + /// + /// Gets or sets ConvertTextType. + /// + public virtual string ConvertTextType { get; set; } + + /// + /// Gets or sets SourceCharacters. + /// + public virtual string SourceCharacters { get; set; } + + /// + /// Gets or sets TargetCharacters. + /// + public virtual string TargetCharacters { get; set; } + + /// + /// Get the string presentation of the object. + /// + /// String presentation of the object. + public override string ToString() + { + var sb = new StringBuilder(); + sb.Append("class ConvertTextOptions {\n"); + sb.Append(" Name: ").Append(this.Name).Append("\n"); + sb.Append(" DataSource: ").Append(this.DataSource).Append("\n"); + sb.Append(" FileInfo: ").Append(this.FileInfo).Append("\n"); + sb.Append(" Worksheet: ").Append(this.Worksheet).Append("\n"); + sb.Append(" Range: ").Append(this.Range).Append("\n"); + sb.Append(" ConvertTextType: ").Append(this.ConvertTextType).Append("\n"); + sb.Append(" SourceCharacters: ").Append(this.SourceCharacters).Append("\n"); + sb.Append(" TargetCharacters: ").Append(this.TargetCharacters).Append("\n"); + sb.Append("}\n"); + return sb.ToString(); + } + } +} diff --git a/Aspose.Cells.Cloud.SDK/Model/ConvertTextType.cs b/Aspose.Cells.Cloud.SDK/Model/ConvertTextType.cs new file mode 100644 index 00000000..babfdf82 --- /dev/null +++ b/Aspose.Cells.Cloud.SDK/Model/ConvertTextType.cs @@ -0,0 +1,44 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright (c) 2024 Aspose.Cells Cloud +// +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// +// -------------------------------------------------------------------------------------------------------------------- + +namespace Aspose.Cells.Cloud.SDK.Model +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Runtime.Serialization; + using System.Text; + using System.Drawing; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + + /// + /// ConvertTextType. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ConvertTextType + { + } +} diff --git a/Aspose.Cells.Cloud.SDK/Request/PostConvertTextRequest.cs b/Aspose.Cells.Cloud.SDK/Request/PostConvertTextRequest.cs new file mode 100644 index 00000000..6f9b3640 --- /dev/null +++ b/Aspose.Cells.Cloud.SDK/Request/PostConvertTextRequest.cs @@ -0,0 +1,102 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright (c) 2024 Aspose.Cells Cloud +// +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// +// -------------------------------------------------------------------------------------------------------------------- + +namespace Aspose.Cells.Cloud.SDK.Request +{ + using Aspose.Cells.Cloud.SDK.Model; + using Newtonsoft.Json; + using System.Collections.Generic; + using System.Net; + using System.Text.RegularExpressions; + + /// + /// Request model for operation. + /// + public class PostConvertTextRequest : IRequestModel + { + /// + /// Initializes a new instance of the class. + /// + public PostConvertTextRequest() + { + + } + + /// + /// Initializes a new instance of the class. + /// + /// + public PostConvertTextRequest(ConvertTextOptions convertTextOptions) + { + this.convertTextOptions = convertTextOptions; + } + + /// + /// Gets or sets convertTextOptions. + /// + public ConvertTextOptions convertTextOptions { get; set; } + + + /// + /// Gets or sets extendQueryParameterMap. + /// + public IDictionary extendQueryParameterMap ; + + /// + /// Creates the http request based on this request. + /// + /// Api base uri. + /// The http request instance. + public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary defaultHeaderMap, List requestHandlers) + { + var localVarHeaderParams = new Dictionary(); + var localVarFileParams = new Dictionary(); + string localVarPostBody =""; + string localVarHttpContentType = "application/json"; + // verify the required parameter 'convertTextOptions' is set + if ( this.convertTextOptions == null) + { + throw new ApiException(400, "Missing required parameter 'convertTextOptions' when calling PostConvertText"); + } + + var path = baseUri + "/cells/converttext"; + path = Regex + .Replace(path, "\\*", string.Empty) + .Replace("&", "&") + .Replace("/?", "?"); + + if (this.extendQueryParameterMap != null) + { + foreach (KeyValuePair kvp in extendQueryParameterMap) + { + path = UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value); + } + } + + localVarPostBody = ( this.convertTextOptions != null ? JsonConvert.SerializeObject(this.convertTextOptions) : null); + return UrlHelper.PrepareRequest(path, "POST", localVarFileParams, localVarHeaderParams, localVarPostBody, localVarHttpContentType, defaultHeaderMap, requestHandlers); + } + } +} diff --git a/README.md b/README.md index 09ff20d7..8c58c35a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Nuget](https://img.shields.io/nuget/v/Aspose.Cells-Cloud) ![Nuget](https://img.shields.io/nuget/dt/Aspose.Cells-Cloud) ![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-dotnet)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-dotnet/24.10) +![Nuget](https://img.shields.io/nuget/v/Aspose.Cells-Cloud) ![Nuget](https://img.shields.io/nuget/dt/Aspose.Cells-Cloud) ![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-dotnet)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-dotnet/24.11.0) # .NET package for Aspose.Cells Cloud @@ -17,11 +17,11 @@ Enhance your .NET applications with the [Aspose.Cells Cloud](https://products.as - Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats. - 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. -## Feature & Enhancements in Version 24.10 +## Feature & Enhancements in Version 24.11 Full list of issues covering all changes in this release: -- Add the new feature about removing characters on TextProcessingController. +- Add convert text feature on TextProcessingController. ## Support file format @@ -93,6 +93,10 @@ var response = cellsApi.CellsWorksheetsPutAddNewWorksheet(name, sheetName, posit # Release history version +## Enhancements in Version 24.10 + +- Add the new feature about removing characters on TextProcessingController. + ## Enhancements in Version 24.9 - Add word case function for TextProcessingController. diff --git a/TestData/12345-Doforms-Test_5255608.xlsx b/TestData/CellsCloud/12345-Doforms-Test_5255608.xlsx similarity index 100% rename from TestData/12345-Doforms-Test_5255608.xlsx rename to TestData/CellsCloud/12345-Doforms-Test_5255608.xlsx diff --git a/TestData/2Array_double_json.txt b/TestData/CellsCloud/2Array_double_json.txt similarity index 100% rename from TestData/2Array_double_json.txt rename to TestData/CellsCloud/2Array_double_json.txt diff --git a/TestData/2Array_int_json.txt b/TestData/CellsCloud/2Array_int_json.txt similarity index 100% rename from TestData/2Array_int_json.txt rename to TestData/CellsCloud/2Array_int_json.txt diff --git a/TestData/2Array_string_json.txt b/TestData/CellsCloud/2Array_string_json.txt similarity index 100% rename from TestData/2Array_string_json.txt rename to TestData/CellsCloud/2Array_string_json.txt diff --git a/TestData/Array_double_json.txt b/TestData/CellsCloud/Array_double_json.txt similarity index 100% rename from TestData/Array_double_json.txt rename to TestData/CellsCloud/Array_double_json.txt diff --git a/TestData/Array_double_xml.txt b/TestData/CellsCloud/Array_double_xml.txt similarity index 100% rename from TestData/Array_double_xml.txt rename to TestData/CellsCloud/Array_double_xml.txt diff --git a/TestData/Array_int_json.txt b/TestData/CellsCloud/Array_int_json.txt similarity index 100% rename from TestData/Array_int_json.txt rename to TestData/CellsCloud/Array_int_json.txt diff --git a/TestData/Array_int_xml.txt b/TestData/CellsCloud/Array_int_xml.txt similarity index 100% rename from TestData/Array_int_xml.txt rename to TestData/CellsCloud/Array_int_xml.txt diff --git a/TestData/Array_string_json.txt b/TestData/CellsCloud/Array_string_json.txt similarity index 100% rename from TestData/Array_string_json.txt rename to TestData/CellsCloud/Array_string_json.txt diff --git a/TestData/Array_string_xml.txt b/TestData/CellsCloud/Array_string_xml.txt similarity index 100% rename from TestData/Array_string_xml.txt rename to TestData/CellsCloud/Array_string_xml.txt diff --git a/TestData/Batch_data_json.txt b/TestData/CellsCloud/Batch_data_json.txt similarity index 100% rename from TestData/Batch_data_json.txt rename to TestData/CellsCloud/Batch_data_json.txt diff --git a/TestData/Batch_data_xml.txt b/TestData/CellsCloud/Batch_data_xml.txt similarity index 100% rename from TestData/Batch_data_xml.txt rename to TestData/CellsCloud/Batch_data_xml.txt diff --git a/TestData/Batch_data_xml_2.txt b/TestData/CellsCloud/Batch_data_xml_2.txt similarity index 100% rename from TestData/Batch_data_xml_2.txt rename to TestData/CellsCloud/Batch_data_xml_2.txt diff --git a/TestData/BigBook.xlsx b/TestData/CellsCloud/BigBook.xlsx similarity index 100% rename from TestData/BigBook.xlsx rename to TestData/CellsCloud/BigBook.xlsx diff --git a/TestData/Book1-addin.xlsm b/TestData/CellsCloud/Book1-addin.xlsm similarity index 100% rename from TestData/Book1-addin.xlsm rename to TestData/CellsCloud/Book1-addin.xlsm diff --git a/TestData/Book1.pdf b/TestData/CellsCloud/Book1.pdf similarity index 100% rename from TestData/Book1.pdf rename to TestData/CellsCloud/Book1.pdf diff --git a/TestData/Book1.xlsx b/TestData/CellsCloud/Book1.xlsx similarity index 100% rename from TestData/Book1.xlsx rename to TestData/CellsCloud/Book1.xlsx diff --git a/TestData/Book2.xlsx b/TestData/CellsCloud/Book2.xlsx similarity index 100% rename from TestData/Book2.xlsx rename to TestData/CellsCloud/Book2.xlsx diff --git a/TestData/BookAddin.xlsx b/TestData/CellsCloud/BookAddin.xlsx similarity index 100% rename from TestData/BookAddin.xlsx rename to TestData/CellsCloud/BookAddin.xlsx diff --git a/TestData/BookChart.xlsx b/TestData/CellsCloud/BookChart.xlsx similarity index 100% rename from TestData/BookChart.xlsx rename to TestData/CellsCloud/BookChart.xlsx diff --git a/TestData/BookChartData.xlsx b/TestData/CellsCloud/BookChartData.xlsx similarity index 100% rename from TestData/BookChartData.xlsx rename to TestData/CellsCloud/BookChartData.xlsx diff --git a/TestData/BookCsvDuplicateData.csv b/TestData/CellsCloud/BookCsvDuplicateData.csv similarity index 100% rename from TestData/BookCsvDuplicateData.csv rename to TestData/CellsCloud/BookCsvDuplicateData.csv diff --git a/TestData/BookDate.xlsx b/TestData/CellsCloud/BookDate.xlsx similarity index 100% rename from TestData/BookDate.xlsx rename to TestData/CellsCloud/BookDate.xlsx diff --git a/TestData/BookDuplicateData.xlsx b/TestData/CellsCloud/BookDuplicateData.xlsx similarity index 100% rename from TestData/BookDuplicateData.xlsx rename to TestData/CellsCloud/BookDuplicateData.xlsx diff --git a/TestData/BookFonts.xlsx b/TestData/CellsCloud/BookFonts.xlsx similarity index 100% rename from TestData/BookFonts.xlsx rename to TestData/CellsCloud/BookFonts.xlsx diff --git a/TestData/BookImpCSVData.xlsx b/TestData/CellsCloud/BookImpCSVData.xlsx similarity index 100% rename from TestData/BookImpCSVData.xlsx rename to TestData/CellsCloud/BookImpCSVData.xlsx diff --git a/TestData/BookP2E.pdf b/TestData/CellsCloud/BookP2E.pdf similarity index 100% rename from TestData/BookP2E.pdf rename to TestData/CellsCloud/BookP2E.pdf diff --git a/TestData/BookPivotTable.xlsx b/TestData/CellsCloud/BookPivotTable.xlsx similarity index 100% rename from TestData/BookPivotTable.xlsx rename to TestData/CellsCloud/BookPivotTable.xlsx diff --git a/TestData/BookRangeData.xlsx b/TestData/CellsCloud/BookRangeData.xlsx similarity index 100% rename from TestData/BookRangeData.xlsx rename to TestData/CellsCloud/BookRangeData.xlsx diff --git a/TestData/BookScriptLab.xlsx b/TestData/CellsCloud/BookScriptLab.xlsx similarity index 100% rename from TestData/BookScriptLab.xlsx rename to TestData/CellsCloud/BookScriptLab.xlsx diff --git a/TestData/BookTableL2W.xlsx b/TestData/CellsCloud/BookTableL2W.xlsx similarity index 100% rename from TestData/BookTableL2W.xlsx rename to TestData/CellsCloud/BookTableL2W.xlsx diff --git a/TestData/BookText.xlsx b/TestData/CellsCloud/BookText.xlsx similarity index 100% rename from TestData/BookText.xlsx rename to TestData/CellsCloud/BookText.xlsx diff --git a/TestData/Book_python.xlsx b/TestData/CellsCloud/Book_python.xlsx similarity index 100% rename from TestData/Book_python.xlsx rename to TestData/CellsCloud/Book_python.xlsx diff --git a/TestData/C9694XLSXToCSV.xlsx b/TestData/CellsCloud/C9694XLSXToCSV.xlsx similarity index 100% rename from TestData/C9694XLSXToCSV.xlsx rename to TestData/CellsCloud/C9694XLSXToCSV.xlsx diff --git a/TestData/Compal.xlsx b/TestData/CellsCloud/Compal.xlsx similarity index 100% rename from TestData/Compal.xlsx rename to TestData/CellsCloud/Compal.xlsx diff --git a/TestData/CustomTest_7212.xlsx b/TestData/CellsCloud/CustomTest_7212.xlsx similarity index 100% rename from TestData/CustomTest_7212.xlsx rename to TestData/CellsCloud/CustomTest_7212.xlsx diff --git a/TestData/Defect List Template.xlsx b/TestData/CellsCloud/Defect List Template.xlsx similarity index 100% rename from TestData/Defect List Template.xlsx rename to TestData/CellsCloud/Defect List Template.xlsx diff --git a/TestData/DefectListTemplate.xlsx b/TestData/CellsCloud/DefectListTemplate.xlsx similarity index 100% rename from TestData/DefectListTemplate.xlsx rename to TestData/CellsCloud/DefectListTemplate.xlsx diff --git a/TestData/Employee Sales Summary 2008.xlsx b/TestData/CellsCloud/Employee Sales Summary 2008.xlsx similarity index 100% rename from TestData/Employee Sales Summary 2008.xlsx rename to TestData/CellsCloud/Employee Sales Summary 2008.xlsx diff --git a/TestData/Employee_Sales_Summary_2008R2 - Expand.xlsx b/TestData/CellsCloud/Employee_Sales_Summary_2008R2 - Expand.xlsx similarity index 100% rename from TestData/Employee_Sales_Summary_2008R2 - Expand.xlsx rename to TestData/CellsCloud/Employee_Sales_Summary_2008R2 - Expand.xlsx diff --git a/TestData/Employee_Sales_Summary_2008R2.xlsx b/TestData/CellsCloud/Employee_Sales_Summary_2008R2.xlsx similarity index 100% rename from TestData/Employee_Sales_Summary_2008R2.xlsx rename to TestData/CellsCloud/Employee_Sales_Summary_2008R2.xlsx diff --git a/TestData/Excel+Landscape+Print.pdf b/TestData/CellsCloud/Excel+Landscape+Print.pdf similarity index 100% rename from TestData/Excel+Landscape+Print.pdf rename to TestData/CellsCloud/Excel+Landscape+Print.pdf diff --git a/TestData/ExcelLandscapePrint.xlsx b/TestData/CellsCloud/ExcelLandscapePrint.xlsx similarity index 100% rename from TestData/ExcelLandscapePrint.xlsx rename to TestData/CellsCloud/ExcelLandscapePrint.xlsx diff --git a/TestData/ExcelLandscapePrintUpdate.xlsx b/TestData/CellsCloud/ExcelLandscapePrintUpdate.xlsx similarity index 100% rename from TestData/ExcelLandscapePrintUpdate.xlsx rename to TestData/CellsCloud/ExcelLandscapePrintUpdate.xlsx diff --git a/TestData/ExportSheetPage.xlsx b/TestData/CellsCloud/ExportSheetPage.xlsx similarity index 100% rename from TestData/ExportSheetPage.xlsx rename to TestData/CellsCloud/ExportSheetPage.xlsx diff --git a/TestData/FileUpload.vsdx b/TestData/CellsCloud/FileUpload.vsdx similarity index 100% rename from TestData/FileUpload.vsdx rename to TestData/CellsCloud/FileUpload.vsdx diff --git a/TestData/Fumal.xlsx b/TestData/CellsCloud/Fumal.xlsx similarity index 100% rename from TestData/Fumal.xlsx rename to TestData/CellsCloud/Fumal.xlsx diff --git a/TestData/GatoPreto-CEO.xlsx b/TestData/CellsCloud/GatoPreto-CEO.xlsx similarity index 100% rename from TestData/GatoPreto-CEO.xlsx rename to TestData/CellsCloud/GatoPreto-CEO.xlsx diff --git a/TestData/Group.xlsx b/TestData/CellsCloud/Group.xlsx similarity index 100% rename from TestData/Group.xlsx rename to TestData/CellsCloud/Group.xlsx diff --git a/TestData/IMPORTANT_FIX_THIS.xlsx b/TestData/CellsCloud/IMPORTANT_FIX_THIS.xlsx similarity index 100% rename from TestData/IMPORTANT_FIX_THIS.xlsx rename to TestData/CellsCloud/IMPORTANT_FIX_THIS.xlsx diff --git a/TestData/ImportData.xlsx b/TestData/CellsCloud/ImportData.xlsx similarity index 100% rename from TestData/ImportData.xlsx rename to TestData/CellsCloud/ImportData.xlsx diff --git a/TestData/Koala.jpg b/TestData/CellsCloud/Koala.jpg similarity index 100% rename from TestData/Koala.jpg rename to TestData/CellsCloud/Koala.jpg diff --git a/TestData/LogMarker.jpg b/TestData/CellsCloud/LogMarker.jpg similarity index 100% rename from TestData/LogMarker.jpg rename to TestData/CellsCloud/LogMarker.jpg diff --git a/TestData/Marker.jpg b/TestData/CellsCloud/Marker.jpg similarity index 100% rename from TestData/Marker.jpg rename to TestData/CellsCloud/Marker.jpg diff --git a/TestData/MasterControlSheetTemplate.xlsx b/TestData/CellsCloud/MasterControlSheetTemplate.xlsx similarity index 100% rename from TestData/MasterControlSheetTemplate.xlsx rename to TestData/CellsCloud/MasterControlSheetTemplate.xlsx diff --git a/TestData/MiddelBook.xlsx b/TestData/CellsCloud/MiddelBook.xlsx similarity index 100% rename from TestData/MiddelBook.xlsx rename to TestData/CellsCloud/MiddelBook.xlsx diff --git a/TestData/NeedUnlock1.xlsx b/TestData/CellsCloud/NeedUnlock1.xlsx similarity index 100% rename from TestData/NeedUnlock1.xlsx rename to TestData/CellsCloud/NeedUnlock1.xlsx diff --git a/TestData/needUnlock2.xlsx b/TestData/CellsCloud/NeedUnlock2.xlsx similarity index 100% rename from TestData/needUnlock2.xlsx rename to TestData/CellsCloud/NeedUnlock2.xlsx diff --git a/TestData/NewCopy.xlsx b/TestData/CellsCloud/NewCopy.xlsx similarity index 100% rename from TestData/NewCopy.xlsx rename to TestData/CellsCloud/NewCopy.xlsx diff --git a/TestData/NoProblem_before_July.xls b/TestData/CellsCloud/NoProblem_before_July.xls similarity index 100% rename from TestData/NoProblem_before_July.xls rename to TestData/CellsCloud/NoProblem_before_July.xls diff --git a/TestData/NoProblem_from_July.xls b/TestData/CellsCloud/NoProblem_from_July.xls similarity index 100% rename from TestData/NoProblem_from_July.xls rename to TestData/CellsCloud/NoProblem_from_July.xls diff --git a/TestData/OLEDoc.docx b/TestData/CellsCloud/OLEDoc.docx similarity index 100% rename from TestData/OLEDoc.docx rename to TestData/CellsCloud/OLEDoc.docx diff --git a/TestData/OLEDoc2.docx b/TestData/CellsCloud/OLEDoc2.docx similarity index 100% rename from TestData/OLEDoc2.docx rename to TestData/CellsCloud/OLEDoc2.docx diff --git a/TestData/OLESlide.ppt b/TestData/CellsCloud/OLESlide.ppt similarity index 100% rename from TestData/OLESlide.ppt rename to TestData/CellsCloud/OLESlide.ppt diff --git a/TestData/OneSheet.xlsx b/TestData/CellsCloud/OneSheet.xlsx similarity index 100% rename from TestData/OneSheet.xlsx rename to TestData/CellsCloud/OneSheet.xlsx diff --git a/TestData/Opwh0979-01-546091-14-02-2017-OPW-Helpdesk.xltx b/TestData/CellsCloud/Opwh0979-01-546091-14-02-2017-OPW-Helpdesk.xltx similarity index 100% rename from TestData/Opwh0979-01-546091-14-02-2017-OPW-Helpdesk.xltx rename to TestData/CellsCloud/Opwh0979-01-546091-14-02-2017-OPW-Helpdesk.xltx diff --git a/TestData/PageSetup.xlsx b/TestData/CellsCloud/PageSetup.xlsx similarity index 100% rename from TestData/PageSetup.xlsx rename to TestData/CellsCloud/PageSetup.xlsx diff --git a/TestData/PivTestFile2.xlsx b/TestData/CellsCloud/PivTestFile2.xlsx similarity index 100% rename from TestData/PivTestFile2.xlsx rename to TestData/CellsCloud/PivTestFile2.xlsx diff --git a/TestData/Preventivo-NOA-v2-St240.xlsx b/TestData/CellsCloud/Preventivo-NOA-v2-St240.xlsx similarity index 100% rename from TestData/Preventivo-NOA-v2-St240.xlsx rename to TestData/CellsCloud/Preventivo-NOA-v2-St240.xlsx diff --git a/TestData/RangeBook.xlsx b/TestData/CellsCloud/RangeBook.xlsx similarity index 100% rename from TestData/RangeBook.xlsx rename to TestData/CellsCloud/RangeBook.xlsx diff --git a/TestData/ReportData.xml b/TestData/CellsCloud/ReportData.xml similarity index 100% rename from TestData/ReportData.xml rename to TestData/CellsCloud/ReportData.xml diff --git a/TestData/Slicer.xlsx b/TestData/CellsCloud/Slicer.xlsx similarity index 100% rename from TestData/Slicer.xlsx rename to TestData/CellsCloud/Slicer.xlsx diff --git a/TestData/Table.html b/TestData/CellsCloud/Table.html similarity index 100% rename from TestData/Table.html rename to TestData/CellsCloud/Table.html diff --git a/TestData/TaskBook.xlsx b/TestData/CellsCloud/TaskBook.xlsx similarity index 100% rename from TestData/TaskBook.xlsx rename to TestData/CellsCloud/TaskBook.xlsx diff --git a/TestData/TaskTest.xlsx b/TestData/CellsCloud/TaskTest.xlsx similarity index 100% rename from TestData/TaskTest.xlsx rename to TestData/CellsCloud/TaskTest.xlsx diff --git a/TestData/Template.html b/TestData/CellsCloud/Template.html similarity index 100% rename from TestData/Template.html rename to TestData/CellsCloud/Template.html diff --git a/TestData/Template.xlsx b/TestData/CellsCloud/Template.xlsx similarity index 100% rename from TestData/Template.xlsx rename to TestData/CellsCloud/Template.xlsx diff --git a/TestData/Test+ExcelTemplate.xlsx b/TestData/CellsCloud/Test+ExcelTemplate.xlsx similarity index 100% rename from TestData/Test+ExcelTemplate.xlsx rename to TestData/CellsCloud/Test+ExcelTemplate.xlsx diff --git a/TestData/TestAutofit.xlsx b/TestData/CellsCloud/TestAutofit.xlsx similarity index 100% rename from TestData/TestAutofit.xlsx rename to TestData/CellsCloud/TestAutofit.xlsx diff --git a/TestData/TestCase-Shapes.xlsx b/TestData/CellsCloud/TestCase-Shapes.xlsx similarity index 100% rename from TestData/TestCase-Shapes.xlsx rename to TestData/CellsCloud/TestCase-Shapes.xlsx diff --git a/TestData/TestCase.xlsx b/TestData/CellsCloud/TestCase.xlsx similarity index 100% rename from TestData/TestCase.xlsx rename to TestData/CellsCloud/TestCase.xlsx diff --git a/TestData/TestCasePT.xlsx b/TestData/CellsCloud/TestCasePT.xlsx similarity index 100% rename from TestData/TestCasePT.xlsx rename to TestData/CellsCloud/TestCasePT.xlsx diff --git a/TestData/TestCellFormula.xlsx b/TestData/CellsCloud/TestCellFormula.xlsx similarity index 100% rename from TestData/TestCellFormula.xlsx rename to TestData/CellsCloud/TestCellFormula.xlsx diff --git a/TestData/TestCellsMerge.xlsx b/TestData/CellsCloud/TestCellsMerge.xlsx similarity index 100% rename from TestData/TestCellsMerge.xlsx rename to TestData/CellsCloud/TestCellsMerge.xlsx diff --git a/TestData/TestCellsUnmerge.xlsx b/TestData/CellsCloud/TestCellsUnmerge.xlsx similarity index 100% rename from TestData/TestCellsUnmerge.xlsx rename to TestData/CellsCloud/TestCellsUnmerge.xlsx diff --git a/TestData/TestClearFormats.xlsx b/TestData/CellsCloud/TestClearFormats.xlsx similarity index 100% rename from TestData/TestClearFormats.xlsx rename to TestData/CellsCloud/TestClearFormats.xlsx diff --git a/TestData/TestExcelTemplate.xlsx b/TestData/CellsCloud/TestExcelTemplate.xlsx similarity index 100% rename from TestData/TestExcelTemplate.xlsx rename to TestData/CellsCloud/TestExcelTemplate.xlsx diff --git a/TestData/TestFont.xlsx b/TestData/CellsCloud/TestFont.xlsx similarity index 100% rename from TestData/TestFont.xlsx rename to TestData/CellsCloud/TestFont.xlsx diff --git a/TestData/TestImportData.xlsx b/TestData/CellsCloud/TestImportData.xlsx similarity index 100% rename from TestData/TestImportData.xlsx rename to TestData/CellsCloud/TestImportData.xlsx diff --git a/TestData/TestImportDataCSV.csv b/TestData/CellsCloud/TestImportDataCSV.csv similarity index 100% rename from TestData/TestImportDataCSV.csv rename to TestData/CellsCloud/TestImportDataCSV.csv diff --git a/TestData/TestPortraitlayout.xlsx b/TestData/CellsCloud/TestPortraitlayout.xlsx similarity index 100% rename from TestData/TestPortraitlayout.xlsx rename to TestData/CellsCloud/TestPortraitlayout.xlsx diff --git a/TestData/TestSetRangeStyle.xlsx b/TestData/CellsCloud/TestSetRangeStyle.xlsx similarity index 100% rename from TestData/TestSetRangeStyle.xlsx rename to TestData/CellsCloud/TestSetRangeStyle.xlsx diff --git a/TestData/TestTables.xlsx b/TestData/CellsCloud/TestTables.xlsx similarity index 100% rename from TestData/TestTables.xlsx rename to TestData/CellsCloud/TestTables.xlsx diff --git a/TestData/TestUngroupRows.xlsx b/TestData/CellsCloud/TestUngroupRows.xlsx similarity index 100% rename from TestData/TestUngroupRows.xlsx rename to TestData/CellsCloud/TestUngroupRows.xlsx diff --git a/TestData/TestUnhideRows.xlsx b/TestData/CellsCloud/TestUnhideRows.xlsx similarity index 100% rename from TestData/TestUnhideRows.xlsx rename to TestData/CellsCloud/TestUnhideRows.xlsx diff --git a/TestData/TestWaterMarker-False.xlsx b/TestData/CellsCloud/TestWaterMarker-False.xlsx similarity index 100% rename from TestData/TestWaterMarker-False.xlsx rename to TestData/CellsCloud/TestWaterMarker-False.xlsx diff --git a/TestData/TestWaterMarker-True.xlsx b/TestData/CellsCloud/TestWaterMarker-True.xlsx similarity index 100% rename from TestData/TestWaterMarker-True.xlsx rename to TestData/CellsCloud/TestWaterMarker-True.xlsx diff --git a/TestData/TestWaterMarker.xlsx b/TestData/CellsCloud/TestWaterMarker.xlsx similarity index 100% rename from TestData/TestWaterMarker.xlsx rename to TestData/CellsCloud/TestWaterMarker.xlsx diff --git a/TestData/TestWorbook.xlsx b/TestData/CellsCloud/TestWorbook.xlsx similarity index 100% rename from TestData/TestWorbook.xlsx rename to TestData/CellsCloud/TestWorbook.xlsx diff --git a/TestData/ToJsonCase.xlsx b/TestData/CellsCloud/ToJsonCase.xlsx similarity index 100% rename from TestData/ToJsonCase.xlsx rename to TestData/CellsCloud/ToJsonCase.xlsx diff --git a/TestData/ToxXlsx.html b/TestData/CellsCloud/ToxXlsx.html similarity index 100% rename from TestData/ToxXlsx.html rename to TestData/CellsCloud/ToxXlsx.html diff --git a/TestData/Untitled3.html b/TestData/CellsCloud/Untitled3.html similarity index 100% rename from TestData/Untitled3.html rename to TestData/CellsCloud/Untitled3.html diff --git a/TestData/WaterMark.png b/TestData/CellsCloud/WaterMark.png similarity index 100% rename from TestData/WaterMark.png rename to TestData/CellsCloud/WaterMark.png diff --git a/TestData/WithBarcodes.xlsx b/TestData/CellsCloud/WithBarcodes.xlsx similarity index 100% rename from TestData/WithBarcodes.xlsx rename to TestData/CellsCloud/WithBarcodes.xlsx diff --git a/TestData/WorkBook2.xlsx b/TestData/CellsCloud/WorkBook2.xlsx similarity index 100% rename from TestData/WorkBook2.xlsx rename to TestData/CellsCloud/WorkBook2.xlsx diff --git a/TestData/Workbook1.xlsx b/TestData/CellsCloud/Workbook1.xlsx similarity index 100% rename from TestData/Workbook1.xlsx rename to TestData/CellsCloud/Workbook1.xlsx diff --git a/TestData/aspose.cells.jpg b/TestData/CellsCloud/aspose.cells.jpg similarity index 100% rename from TestData/aspose.cells.jpg rename to TestData/CellsCloud/aspose.cells.jpg diff --git a/TestData/assemblytest.xlsx b/TestData/CellsCloud/assemblytest.xlsx similarity index 100% rename from TestData/assemblytest.xlsx rename to TestData/CellsCloud/assemblytest.xlsx diff --git a/TestData/assemblytest1.xlsx b/TestData/CellsCloud/assemblytest1.xlsx similarity index 100% rename from TestData/assemblytest1.xlsx rename to TestData/CellsCloud/assemblytest1.xlsx diff --git a/TestData/barcode.jpg b/TestData/CellsCloud/barcode.jpg similarity index 100% rename from TestData/barcode.jpg rename to TestData/CellsCloud/barcode.jpg diff --git a/TestData/cloud.png b/TestData/CellsCloud/cloud.png similarity index 100% rename from TestData/cloud.png rename to TestData/CellsCloud/cloud.png diff --git a/TestData/codegen-spec.json b/TestData/CellsCloud/codegen-spec.json similarity index 100% rename from TestData/codegen-spec.json rename to TestData/CellsCloud/codegen-spec.json diff --git a/TestData/customerOutput.xlsx b/TestData/CellsCloud/customerOutput.xlsx similarity index 100% rename from TestData/customerOutput.xlsx rename to TestData/CellsCloud/customerOutput.xlsx diff --git a/TestData/data.xml b/TestData/CellsCloud/data.xml similarity index 100% rename from TestData/data.xml rename to TestData/CellsCloud/data.xml diff --git a/TestData/datasource.xlsx b/TestData/CellsCloud/datasource.xlsx similarity index 100% rename from TestData/datasource.xlsx rename to TestData/CellsCloud/datasource.xlsx diff --git a/TestData/forum18727-2.xlsx b/TestData/CellsCloud/forum18727-2.xlsx similarity index 100% rename from TestData/forum18727-2.xlsx rename to TestData/CellsCloud/forum18727-2.xlsx diff --git a/TestData/forum18727.xlsx b/TestData/CellsCloud/forum18727.xlsx similarity index 100% rename from TestData/forum18727.xlsx rename to TestData/CellsCloud/forum18727.xlsx diff --git a/TestData/forum20596-1.HTM b/TestData/CellsCloud/forum20596-1.HTM similarity index 100% rename from TestData/forum20596-1.HTM rename to TestData/CellsCloud/forum20596-1.HTM diff --git a/TestData/forum20596-2.html b/TestData/CellsCloud/forum20596-2.html similarity index 100% rename from TestData/forum20596-2.html rename to TestData/CellsCloud/forum20596-2.html diff --git a/TestData/import.txt b/TestData/CellsCloud/import.txt similarity index 100% rename from TestData/import.txt rename to TestData/CellsCloud/import.txt diff --git a/TestData/input.json b/TestData/CellsCloud/input.json similarity index 100% rename from TestData/input.json rename to TestData/CellsCloud/input.json diff --git a/TestData/inputFile.xlsx b/TestData/CellsCloud/inputFile.xlsx similarity index 100% rename from TestData/inputFile.xlsx rename to TestData/CellsCloud/inputFile.xlsx diff --git a/TestData/markdowntest.md b/TestData/CellsCloud/markdowntest.md similarity index 100% rename from TestData/markdowntest.md rename to TestData/CellsCloud/markdowntest.md diff --git a/TestData/myDocument.xlsx b/TestData/CellsCloud/myDocument.xlsx similarity index 100% rename from TestData/myDocument.xlsx rename to TestData/CellsCloud/myDocument.xlsx diff --git a/TestData/myDocumentWithBackGroundImage.xlsx b/TestData/CellsCloud/myDocumentWithBackGroundImage.xlsx similarity index 100% rename from TestData/myDocumentWithBackGroundImage.xlsx rename to TestData/CellsCloud/myDocumentWithBackGroundImage.xlsx diff --git a/TestData/needUnlock.xlsx b/TestData/CellsCloud/needUnlock.xlsx similarity index 100% rename from TestData/needUnlock.xlsx rename to TestData/CellsCloud/needUnlock.xlsx diff --git a/TestData/rangtest.xlsx b/TestData/CellsCloud/rangtest.xlsx similarity index 100% rename from TestData/rangtest.xlsx rename to TestData/CellsCloud/rangtest.xlsx diff --git a/TestData/roywang-error.pfx b/TestData/CellsCloud/roywang-error.pfx similarity index 100% rename from TestData/roywang-error.pfx rename to TestData/CellsCloud/roywang-error.pfx diff --git a/TestData/roywang.pfx b/TestData/CellsCloud/roywang.pfx similarity index 100% rename from TestData/roywang.pfx rename to TestData/CellsCloud/roywang.pfx diff --git a/TestData/sample.fods b/TestData/CellsCloud/sample.fods similarity index 100% rename from TestData/sample.fods rename to TestData/CellsCloud/sample.fods diff --git a/TestData/sample.txt b/TestData/CellsCloud/sample.txt similarity index 100% rename from TestData/sample.txt rename to TestData/CellsCloud/sample.txt diff --git a/TestData/sample.xlsx b/TestData/CellsCloud/sample.xlsx similarity index 100% rename from TestData/sample.xlsx rename to TestData/CellsCloud/sample.xlsx diff --git a/TestData/tabledata.xlsx b/TestData/CellsCloud/tabledata.xlsx similarity index 100% rename from TestData/tabledata.xlsx rename to TestData/CellsCloud/tabledata.xlsx diff --git a/TestData/template.xls b/TestData/CellsCloud/template.xls similarity index 99% rename from TestData/template.xls rename to TestData/CellsCloud/template.xls index 1e97e3d0..064255c0 100644 Binary files a/TestData/template.xls and b/TestData/CellsCloud/template.xls differ diff --git a/TestData/test.xlsx b/TestData/CellsCloud/test.xlsx similarity index 100% rename from TestData/test.xlsx rename to TestData/CellsCloud/test.xlsx diff --git a/TestData/txt2excel.xlsx b/TestData/CellsCloud/txt2excel.xlsx similarity index 100% rename from TestData/txt2excel.xlsx rename to TestData/CellsCloud/txt2excel.xlsx diff --git a/TestData/word.jpg b/TestData/CellsCloud/word.jpg similarity index 100% rename from TestData/word.jpg rename to TestData/CellsCloud/word.jpg diff --git a/TestData/wordpdf.pdf b/TestData/CellsCloud/wordpdf.pdf similarity index 100% rename from TestData/wordpdf.pdf rename to TestData/CellsCloud/wordpdf.pdf diff --git a/TestData/zero.txt b/TestData/CellsCloud/zero.txt similarity index 100% rename from TestData/zero.txt rename to TestData/CellsCloud/zero.txt diff --git a/TestData/CellsGo/Book1.xlsx b/TestData/CellsGo/Book1.xlsx new file mode 100644 index 00000000..aa04f4e5 Binary files /dev/null and b/TestData/CellsGo/Book1.xlsx differ diff --git a/TestData/CellsGo/CelLSJAVA41391.xlsx b/TestData/CellsGo/CelLSJAVA41391.xlsx new file mode 100644 index 00000000..e4d8a262 Binary files /dev/null and b/TestData/CellsGo/CelLSJAVA41391.xlsx differ diff --git a/TestData/CellsGo/Cells47415.xlsx b/TestData/CellsGo/Cells47415.xlsx new file mode 100644 index 00000000..79743901 Binary files /dev/null and b/TestData/CellsGo/Cells47415.xlsx differ diff --git a/TestData/CellsGo/CellsJava45708.json b/TestData/CellsGo/CellsJava45708.json new file mode 100644 index 00000000..37a6c3d0 --- /dev/null +++ b/TestData/CellsGo/CellsJava45708.json @@ -0,0 +1,77 @@ +{ + "EntityCin" : "U29120GJ1997PLC031583", + "EntityName" : "AIRMAX PNEUMATICS LIMITED", + "FirstName" : "AJIB", + "MiddleName" : "AHMED", + "LastName" : "GULATI", + "DOB" : "1978-01-26", + "SSN" : "97PLC031583", + "Directors" : [ + { + "id" : "111", + "FirstName" : "DRFNAME1", + "MiddleName" : "DRMNAME1", + "LastName" : "DRLNAME1", + "Reportees" : [ + { + "id" : "aaa", + "FirstName" : "SubFNAMEa", + "MiddleName" : "SubMNAMEa", + "LastName" : "SubLNAMEa", + "Department" : "Accounts", + "City" : "Pune", + "GSTEnabled" : "Yes", + "ITREnabled" : "No" + }, + { + "id" : "bbb", + "FirstName" : "SubFNAMEb", + "MiddleName" : "SubMNAMEb", + "LastName" : "SubLNAMEb", + "Department" : "Finance", + "City" : "Mumbai", + "GSTEnabled" : "No", + "ITREnabled" : "No" + }, + { + "id" : "ccc", + "FirstName" : "SubFNAMEc", + "MiddleName" : "SubMNAMEc", + "LastName" : "SubLNAMEc", + "Department" : "IT", + "City" : "Bangaluru", + "GSTEnabled" : "Yes", + "ITREnabled" : "Yes" + } + ] + }, + { + "id" : "222", + "FirstName" : "DRFNAME2", + "MiddleName" : "DRMNAME2", + "LastName" : "DRLNAME2", + "Reportees" : [ + { + "id" : "eee", + "FirstName" : "SubFNAMEe", + "MiddleName" : "SubMNAMEe", + "LastName" : "SubLNAMEe", + "Department" : "Production", + "City" : "Pune", + "GSTEnabled" : "No", + "ITREnabled" : "No" + }, + { + "id" : "fff", + "FirstName" : "SubFNAMEf", + "MiddleName" : "SubMNAMEf", + "LastName" : "SubLNAMEf", + "Department" : "Sales", + "City" : "Pune", + "GSTEnabled" : "Yes", + "ITREnabled" : "Yes" + } + ] + } + ] + } \ No newline at end of file diff --git a/TestData/CellsGo/CellsNet43300.xlsx b/TestData/CellsGo/CellsNet43300.xlsx new file mode 100644 index 00000000..38941a9a Binary files /dev/null and b/TestData/CellsGo/CellsNet43300.xlsx differ diff --git a/TestData/CellsGo/CellsNet46333_2.xlsx b/TestData/CellsGo/CellsNet46333_2.xlsx new file mode 100644 index 00000000..91755565 Binary files /dev/null and b/TestData/CellsGo/CellsNet46333_2.xlsx differ diff --git a/TestData/CellsGo/N46267.xlsx b/TestData/CellsGo/N46267.xlsx new file mode 100644 index 00000000..47d44394 Binary files /dev/null and b/TestData/CellsGo/N46267.xlsx differ diff --git a/TestData/CellsGo/TestCase.xlsx b/TestData/CellsGo/TestCase.xlsx new file mode 100644 index 00000000..1149e716 Binary files /dev/null and b/TestData/CellsGo/TestCase.xlsx differ diff --git a/TestData/CellsGo/example.xlsx b/TestData/CellsGo/example.xlsx new file mode 100644 index 00000000..b5e4584b Binary files /dev/null and b/TestData/CellsGo/example.xlsx differ diff --git a/docs/api/post-convert-text.md b/docs/api/post-convert-text.md new file mode 100644 index 00000000..37ea9b95 --- /dev/null +++ b/docs/api/post-convert-text.md @@ -0,0 +1,18 @@ +# **postConvertText API** + + + +```bash + +POST http://api.aspose.cloud/v3.0//cells/converttext + +``` + +## The request parameters of **postConvertText** API are: + +| Parameter Name | Type | Path/Query String/HTTPBody | Description | +| :- | :- | :- |:- | +|convertTextOptions|Class|Body|| + + +The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/TextProcessingController/PostConvertText) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser. diff --git a/docs/model/convert-text-options.md b/docs/model/convert-text-options.md new file mode 100644 index 00000000..64b9bba5 --- /dev/null +++ b/docs/model/convert-text-options.md @@ -0,0 +1,17 @@ +# **convertTextOptions** + + + +## **Properties** + +| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description | +| :- | :- | :- |:- | :- | :- | +|Name|String|true|false | || +|DataSource|Class|true|false | || +|FileInfo|Class|true|false | || +|Worksheet|String|true|false | || +|Range|String|true|false | || +|ConvertTextType|String|true|false | || +|SourceCharacters|String|true|false | || +|TargetCharacters|String|true|false | || + diff --git a/docs/model/convert-text-type.md b/docs/model/convert-text-type.md new file mode 100644 index 00000000..a7a3b38a --- /dev/null +++ b/docs/model/convert-text-type.md @@ -0,0 +1,9 @@ +# **convertTextType** + + + +## **Properties** + +| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description | +| :- | :- | :- |:- | :- | :- | +