Swift API per esportare LISTOBJECT nel file SVG
Libreria Swift per esportare LISTOBJECT nel file SVG
Utilizzare Cells Esporta REST API per esportare flussi di lavoro di oggetti interni del foglio di calcolo in Swift. Questa è una soluzione professionale per esportare LISTOBJECT nel file in formato SVG da un foglio di calcolo online utilizzando Swift.
Esporta l\'oggetto LISTOBJECT nel file in formato SVG in Swift
API
POST
https://api.aspose.cloud/v3.0/cells/export
Esportare l'oggetto LISTOBJECT nel file SVG dal foglio di calcolo è un'attività complessa. L'esportazione di LISTOBJECT nelle transizioni di formato SVG viene eseguita dal nostro SDK Swift mantenendo il contenuto strutturale e logico principale del foglio di calcolo LISTOBJECT di origine. La nostra libreria Swift è una soluzione professionale per esportare online oggetti LISTOBJECT in file in formato SVG. Questo Cloud SDK offre agli sviluppatori Swift funzionalità potenti e un output SVG perfetto.
Esempio di codice in Swift utilizzando REST API per esportare LISTOBJECT nel formato SVG dal foglio di calcolo
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-swift/
import AsposeCellsCloud
let expectation1 = self.expectation(description: "checkAuth")
AsposeCellsCloudAPI.clientId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
AsposeCellsCloudAPI.clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
AuthAspose.checkAuth()
{
(authError) in
guard authError == nil else {
XCTFail("error checkAuth")
return
}
expectation1.fulfill()
}
self.waitForExpectations(timeout: testTimeout, handler: nil)
let expectation = self.expectation(description: "testpostExport_Workbook")
let objectType:String = "listobject"
let format:String = "svg"
var files = Dictionary<String, URL>()
files[BOOK1] = getURL(BOOK1)
files[MYDOC] = getURL(MYDOC)
LiteCellsAPI.postExport(files: files, objectType: objectType, format: format)
{
(response, error) in
guard error == nil else {
XCTFail("error testpostExport_Workbook")
return
}
if let response = response {
XCTAssertTrue(response is FilesResult)
expectation.fulfill()
}
}
self.waitForExpectations(timeout: testTimeout, handler: nil)
Come utilizzare Swift API per esportare LISTOBJECT in SVG
- Crea un account suPannello di controllo per ottenere gratuitamente la quota API e i dettagli dell'autorizzazione
- Inizializza CellsApi con ID client, segreto client, URL di base e versione API
- Chiama il metodo postExport per ottenere il flusso risultante