Swift API för att spara NUMBERS som MHTML
Swift-bibliotek för att spara NUMBERS som MHTML
Använd Cells SaveAs REST API för att skapa anpassade kalkylbladsarbetsflöden i Swift. Detta är en professionell lösning för att spara NUMBERS som MHTML och andra dokumentformat online med Swift.
Spara en NUMBERS-fil som MHTML i Swift
API
POST
https://api.aspose.cloud/v3.0/cells/{name}/SaveAs
Att spara filformat från NUMBERS som MHTML är en komplex uppgift. Alla NUMBERS till MHTML format övergångar utförs av vår Swift SDK samtidigt som källkoden NUMBERS kalkylarkets huvudsakliga strukturella och logiska innehåll. Vårt Swift-bibliotek är en professionell lösning för att spara NUMBERS som MHTML-filer online. Denna Cloud SDK ger Swift-utvecklare kraftfull funktionalitet och perfekt MHTML-utdata.
Kodexempel i Swift med REST API för att spara NUMBERS som MHTML-format
// 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 {
return
}
expectation1.fulfill()
}
self.waitForExpectations(timeout: testTimeout, handler: nil)
let expectation = self.expectation(description: "saveAs")
let name:String = BOOK1.numbers
let saveOptions:PdfSaveOptions? = PdfSaveOptions(enableHTTPCompression: nil, saveFormat: "pdf", clearData: nil, cachedFileFolder: nil, validateMergedAreas: nil, refreshChartCache: nil, createDirectory: nil, sortNames: nil, calculateFormula: nil, checkFontCompatibility: nil, onePagePerSheet: true, compliance: nil, defaultFont: nil, printingPageType: nil, imageType: nil, desiredPPI: nil, jpegQuality: nil, securityOptions: nil)
let newfilename:String = "newbook.mhtml"
let isAutoFitRows:Bool? = true
let isAutoFitColumns:Bool? = true
let folder:String = TEMPFOLDER
let storageName:String? = nil
CellsAPI.cellsSaveAsPostDocumentSaveAs(name: name, saveOptions: saveOptions, newfilename: newfilename, isAutoFitRows: isAutoFitRows, isAutoFitColumns: isAutoFitColumns, folder: folder, storageName: storageName)
{
(response, error) in
guard error == nil else {
return
}
if let response = response {
expectation.fulfill()
}
}
self.waitForExpectations(timeout: testTimeout, handler: nil)
Hur man använder Swift API för att spara NUMMER som MHTML
- Skapa ett konto påinstrumentbräda för att få gratis API kvot & auktoriseringsinformation
- Initiera CellsApi med klient-id, klienthemlighet, basadress och version API
- Anrop cellsSaveAsPostDocumentSaveAs-metoden för att hämta den resulterande strömmen
Systemkrav
- macOS Monterey 12.4
- Swift 4.2