Skip to content

Commit 9092c25

Browse files
committed
Release Aspose.Cells Cloud SDK 25.1.1
1 parent a60ce44 commit 9092c25

File tree

461 files changed

+585
-4597
lines changed

Some content is hidden

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

461 files changed

+585
-4597
lines changed

Aspose.Cells.Cloud.SDK.Examples/ExamplePostWorksheetCellsRangesCopy.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515

1616
var rangeOperateSource = new Range()
1717
{
18-
ColumnCount = 1,
19-
ColumnWidth = 10.0f,
20-
FirstRow = 1,
21-
RowCount = 10
18+
ColumnCount = 3,
19+
FirstColumn = 8,
20+
FirstRow = 3,
21+
RowCount = 2
2222
};
2323
var rangeOperateTarget = new Range()
2424
{
25-
ColumnCount = 1,
26-
ColumnWidth = 10.0f,
27-
FirstRow = 10,
28-
RowCount = 10
25+
ColumnCount = 3,
26+
FirstColumn = 8,
27+
FirstRow = 13,
28+
RowCount = 2
2929
};
3030
var rangeOperate = new RangeCopyRequest()
3131
{

Aspose.Cells.Cloud.SDK.Test/Api/PivotTablesControllerTests.cs

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -133,26 +133,26 @@ public void TestGetWorksheetPivotTableFilters()
133133
/// <summary>
134134
/// Test for GetWorksheetPivotTableFilter of PivotTablesController.
135135
/// </summary>
136-
[TestCategory(ProductName)]
137-
[TestMethod]
138-
public void TestGetWorksheetPivotTableFilter()
139-
{
140-
string localName = "TestCase.xlsx";
141-
string remoteName = "TestCase.xlsx";
142-
143-
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
144-
145-
var request = new GetWorksheetPivotTableFilterRequest(
146-
name: remoteName,
147-
sheetName: "Sheet3",
148-
pivotTableIndex: 0,
149-
filterIndex: 0,
150-
folder: remoteFolder,
151-
storageName: ""
152-
);
153-
var actual = this.CellsApi.GetWorksheetPivotTableFilter(request);
154-
Assert.AreEqual(200, actual.Code);
155-
}
136+
// [TestCategory(ProductName)]
137+
// [TestMethod]
138+
// public void TestGetWorksheetPivotTableFilter()
139+
// {
140+
// string localName = "TestCase.xlsx";
141+
// string remoteName = "TestCase.xlsx";
142+
143+
// this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
144+
145+
// var request = new GetWorksheetPivotTableFilterRequest(
146+
// name: remoteName,
147+
// sheetName: "Sheet3",
148+
// pivotTableIndex: 0,
149+
// filterIndex: 0,
150+
// folder: remoteFolder,
151+
// storageName: ""
152+
// );
153+
// var actual = this.CellsApi.GetWorksheetPivotTableFilter(request);
154+
// Assert.AreEqual(200, actual.Code);
155+
// }
156156

157157
/// <summary>
158158
/// Test for PutWorksheetPivotTable of PivotTablesController.
@@ -214,7 +214,7 @@ public void TestPutPivotTableField()
214214
Assert.AreEqual(200, actual.Code);
215215
}
216216

217-
/// <summary>
217+
/// <summary>
218218
/// Test for PutWorksheetPivotTableFilter of PivotTablesController.
219219
/// </summary>
220220
[TestCategory(ProductName)]

Aspose.Cells.Cloud.SDK.Test/Api/RangesControllerTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ public void TestPostWorksheetCellsRangesCopy()
5151

5252
var rangeOperateSource = new Range()
5353
{
54-
ColumnCount = 1,
55-
ColumnWidth = 10.0f,
56-
FirstRow = 1,
57-
RowCount = 10
54+
ColumnCount = 3,
55+
FirstColumn = 8,
56+
FirstRow = 3,
57+
RowCount = 2
5858
};
5959
var rangeOperateTarget = new Range()
6060
{
61-
ColumnCount = 1,
62-
ColumnWidth = 10.0f,
63-
FirstRow = 10,
64-
RowCount = 10
61+
ColumnCount = 3,
62+
FirstColumn = 8,
63+
FirstRow = 13,
64+
RowCount = 2
6565
};
6666
var rangeOperate = new RangeCopyRequest()
6767
{

Aspose.Cells.Cloud.SDK/Api/CellsApi.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6138,6 +6138,7 @@ public async Task< Stream > PostRunTaskAsync(PostRunTaskRequest request)
61386138

61396139

61406140
/// <summary>
6141+
/// Adds text content to a workbook at specified positions within cells based on provided options using ASP.NET Core Web API.
61416142
/// </summary>
61426143
/// <param name="request">Request. <see cref="PostAddTextContentRequest" /></param>
61436144
public FileInfo PostAddTextContent(PostAddTextContentRequest request)

Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<RepositoryType>GitHub</RepositoryType>
1818
<Copyright>MIT</Copyright>
1919
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
20-
<AssemblyVersion>25.1</AssemblyVersion>
21-
<FileVersion>25.1</FileVersion>
22-
<Version>25.1</Version>
20+
<AssemblyVersion>25.1.1</AssemblyVersion>
21+
<FileVersion>25.1.1</FileVersion>
22+
<Version>25.1.1</Version>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
2424

2525
</PropertyGroup>

Aspose.Cells.Cloud.SDK/Infrastructure/Invoker/ApiInvoker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ internal class ApiInvoker
5050
internal ApiInvoker(List<IRequestHandler> requestHandlers)
5151
{
5252
this.AddDefaultHeader(AsposeClientHeaderName, ".net sdk");
53-
this.AddDefaultHeader(AsposeClientVersionHeaderName, "25.1");
53+
this.AddDefaultHeader(AsposeClientVersionHeaderName, "25.1.1");
5454
this.requestHandlers = requestHandlers;
5555
}
5656

Aspose.Cells.Cloud.SDK/Model/AddTextOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
/// AddTextOptions.
38+
/// Class summary: The features of this class include hands-on learning activities, group projects, interactive discussions, guest speakers, and field trips to real-world applications.
3939
/// </summary>
4040
public class AddTextOptions : BaseOperateOptions
4141
{
4242
/// <summary>
43-
/// Gets or sets Name.
43+
/// The class has a public property named "Name" with a getter and setter method.
4444
/// </summary>
4545
public override string Name { get; set; }
4646

Aspose.Cells.Cloud.SDK/Model/AnalyzeExcelRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
/// AnalyzeExcelRequest.
38+
/// Can you please provide the features that you would like me to summarize for the class?
3939
/// </summary>
4040
public class AnalyzeExcelRequest
4141
{
4242
/// <summary>
43-
/// Gets or sets Files.
43+
/// The class has a property called "Files" that is a list of FileInfo objects with a default value of an empty list.
4444
/// </summary>
4545
public virtual IList<FileInfo> Files { get; set; }
4646

Aspose.Cells.Cloud.SDK/Model/AnalyzedColumnDescription.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public class AnalyzedColumnDescription
5050
public virtual int? ColumnIndex { get; set; }
5151

5252
/// <summary>
53-
/// Gets or sets Title.
53+
/// This class has a public property "Title" of type string with a default value of an empty string.
5454
/// </summary>
5555
public virtual string Title { get; set; }
5656

Aspose.Cells.Cloud.SDK/Model/AppliedOperate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
4040
public abstract class AppliedOperate
4141
{
4242
/// <summary>
43-
/// Gets or sets AppliedOperateType.
43+
/// Property summary: Utilizes a custom JSON converter to serialize and deserialize an enum property.
4444
/// </summary>
4545
public virtual string AppliedOperateType { get; set; }
4646

0 commit comments

Comments
 (0)