Unisci le celle nel foglio di lavoro.

Aspose.Cells Cloud fornisce un solido supporto per unire le celle nel foglio di lavoro, un processo noto per la sua complessità.

Aspose.Cells Cloud fornisce REST API che supporta l'unione di celle nel foglio di lavoro e offre SDK per più linguaggi di programmazione. Questi linguaggi di programmazione includono Net, Java, Go, NodeJS, Python e così via.

POST
https://api.aspose.cloud/v3.0/cells/merge
Choose files
Show all parameters
	using Aspose.Cells.Cloud.SDK.Api;
	using Aspose.Cells.Cloud.SDK.Model;
	using Aspose.Cells.Cloud.SDK.Request;
	using Newtonsoft.Json;
	using System;
	using System.IO;
	using System.Collections.Generic;
	CellsApi cellsApi = new CellsApi("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
	var request = new PostMergeRequest();
	request.File = new Dictionary<string, Stream>();
	string filePath = "Book1.xlsx";
	Stream fileStream = File.OpenRead(filePath);
	request.File.Add(filePath, fileStream);
	request.outFormat = "";
	request.mergeToOneSheet = true;
	request.password = "";
	request.checkExcelRestriction = true;
	request.region = "";
	var result = cellsApi.PostMerge(request);
	fileStream.Close();
 
 

Formati di file supportati

 
 
Formato di input
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Ufficio aperto: Ods, Fods, Ots
  • XML:Foglio di calcoloML, Xml
  • Testo: Csv, Tsv, Txt (delimitato da tabulazioni)
  • Ragnatela: Html, Mhtml
  • Immagini: Png, Jpg, Gif, Emf
  • Altro: Pdf, Json, Markdown
Formato di output
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Microsoft Parola/PowerPoint: Docx, Pptx
  • Ufficio aperto: Ods, Fods, Ots
  • XML:Foglio di calcoloML, Xml
  • Testo: Csv, Tsv, Txt (delimitato da tabulazioni)
  • Ragnatela: Html, Mhtml
  • Immagini: Png, Jpg, Gif, Emf, Svg, Tiff
  • Altro: Pdf, Xps, Dif, Json, Markdown, Sql
 
 
 
 
 

Lingue di sviluppo supportate