Exporter LISTOBJECT vers PPTX à partir de Excel

Bibliothèque C# pour exporter LISTOBJECT vers un fichier PPTX

Utilisez Export API de Cells Cloud pour exporter les workflows d'objets internes du fichier Excel dans Net. Il s'agit d'une solution professionnelle pour exporter LISTOBJECT vers un fichier au format PPTX à partir d'une feuille de calcul en ligne en utilisant le C#.

Exportez l\'objet LISTOBJECT vers un fichier au format PPTX à l\'aide du SDK Cloud Cells pour C#.

API
POST
https://api.aspose.cloud/v3.0/cells/export

Exporter l'objet LISTOBJECT vers le fichier PPTX à partir du fichier Excel est une tâche complexe. L'exportation des transitions au format LISTOBJECT vers PPTX est effectuée par notre SDK C# tout en conservant le contenu structurel et logique principal de la feuille de calcul LISTOBJECT source. Notre bibliothèque C# est une solution professionnelle pour exporter en ligne des objets LISTOBJECT vers des fichiers au format PPTX. Ce SDK Cloud offre aux développeurs C# des fonctionnalités puissantes et une sortie PPTX parfaite.

Exemple de code dans C# utilisant REST API pour exporter LISTOBJECT au format PPTX à partir d\'une feuille de calcul

// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
    string format = "pptx";
    string objectType ="listobject";
    LightCellsApi lightCellsApi =
        new LightCellsApi(Environment.GetEnvironmentVariable("ProductClientId"), Environment.GetEnvironmentVariable("ProductClientSecret"));
    IDictionary<string ,Stream> files = new  Dictionary<string ,Stream>();
    files.Add("Book1.xlsx" , File.OpenRead("Book1.xlsx"));
    files.Add("myDocument.xlsx", File.OpenRead("myDocument.xlsx"));
    var filesResult = lightCellsApi.PostExport(files, objectType, format);
    foreach (var file in filesResult.Files)
    {
        string v = file.FileContent;
        string filename = file.Filename;
        byte[] workbookData = System.Convert.FromBase64String(v);
        MemoryStream memoryStream = new MemoryStream(workbookData, 0, workbookData.Length);
        memoryStream.Seek(0, SeekOrigin.Begin);
        using (FileStream fileStream = File.Create( filename))
        {
            fileStream.Position = 0;
            memoryStream.CopyTo(fileStream);
            fileStream.Close();
        }
    }

Comment utiliser Cells Cloud SDK for Net pour exporter des objets de Excel LISTOBJECT vers PPTX

  1. Créez un compte surTableau de bord pour obtenir gratuitement les détails du quota et de l'autorisation API
  2. Initialisez le Cells API avec votre ID client, votre secret client, votre URL de base et votre version API.
  3. Utilisez la méthode `postExport` pour récupérer le flux résultant.

Configuration requise

  1. NET Framework 4.5.2 ou version ultérieure
  2. Net Standard 2.0 ou version ultérieure