Ai  Assistant
Hello, this is the AI ​​assistant, which can quickly help you perform operations such as Summarize, BuildSpreadsheet, GetCode, etc. on the uploaded Excel files.

Cancella gli elementi interni nei file Excel e genera file di output in vari formati.

In effetti, Aspose.Cells Cloud offre un forte supporto per cancellare gli elementi interni nei file Excel e generare file di output in vari formati.

Aspose.Cells Cloud fornisce REST API che supporta la cancellazione di elementi interni nei file Excel e la generazione di file di output in vari formati 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/clearobjects
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 PostClearObjectsRequest();
	request.File = new Dictionary<string, Stream>();
	string filePath = "Book1.xlsx";
	Stream fileStream = File.OpenRead(filePath);
	request.File.Add(filePath, fileStream);
	request.objecttype = "";
	request.sheetname = "Sheet1";
	request.outFormat = "";
	request.password = "";
	request.checkExcelRestriction = true;
	request.region = "";
	var result = cellsApi.PostClearObjects(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