Merge cells in the worksheet
Aspose.Cells Cloud provides robust support for merging cells in the worksheet, a process known for its intricacy.
Supported Features : Aspose.Cells Cloud provides REST API which supports merging cells in the worksheet and offers SDKs for multiple programming languages. These programming languages are include of Net, Java, Go, NodeJS, Python, and so on.
PUT
s://api.aspose.cloud/v4.0/cells/merge/spreadsheet
Choose files
Show all parameters
using Aspose.Cells.Cloud.SDK.Api;
using Aspose.Cells.Cloud.SDK.Model;
using Aspose.Cells.Cloud.SDK.Request;
CellsApi cellsApi = new CellsApi("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
var spreadsheets = new Dictionary<string, System.IO.Stream>
{
{ "datasource1.xlsx", File.OpenRead("path/to/datasource1.xlsx") },
{ "datasource2.xlsx", File.OpenRead("path/to/datasource2.xlsx") }
};
cellsApi.MergeSpreadsheets(new MergeSpreadsheetsRequest { Spreadsheet = spreadsheets, outFormat = "pdf" }, "result.pdf");
Available SDKs
The Aspose.Cells Cloud SDK is available in multiple popular programming languages, enabling developers to integrate spreadsheet processing capabilities across various development environments.