HTML JSON XML SVG POWERPOINT
EXCEL

Converteer EXCEL naar POWERPOINT via C#

Excel exporteren® EXCEL naar POWERPOINT op .NET Framework-, .NET Core-, Mono- of Xamarin-platforms

EXCEL naar POWERPOINT-conversie op .NET

  1. Open het EXCEL-bestand met de klasse Workbook
  2. Converteer EXCEL naar PDF en stel SaveFormat in op Auto
  3. Laad het geconverteerde PDF-bestand met de klasse Powerpointument
  4. Sla het powerpointument op in POWERPOINT-indeling met de methode Save en stel Powerpoint in als SaveFormat

Conversievereisten

Installeer vanaf de opdrachtregel als nuget install Aspose.Total of via Package Manager Console van Visual Studio met Install-Package Aspose.Total.

U kunt ook het offline MSI-installatieprogramma of DLL’s in een ZIP-bestand downloaden van downloads .

.NET C#-code voor conversie van EXCEL naar POWERPOINT

// load the EXCEL file using Workbook class
var book = new Aspose.Cells.Workbook("input.excel");
// save EXCEL as PDF
book.Save("pdfOutput.pdf", Aspose.Cells.SaveFormat.Auto); 
// load the PDF file using Powerpointument class
var powerpointument = new Aspose.Pdf.Powerpointument("pdfOutput.pdf");
// save powerpointument in PPTX format
powerpointument.Save("output.pptx", SaveFormat.Pptx); 

Bekijk EXCEL conversieopties met .NET

EXCELs converteren naar DOC (Microsoft Word binair formaat)
EXCELs converteren naar DOCX (Office 2007+ Word-document)
EXCELs converteren naar PPTX (Open XML-presentatieformaat)
EXCELs converteren naar WORD (Bestandsindelingen voor tekstverwerking)