HTML JPG PDF XML PPSX
Aspose.Slides  for .NET
PPSX

PPSX-bestandsviewer voor .NET

Bekijk presentatiebestanden zoals PPSX zonder Microsoft PowerPoint of Office Automation

Hoe PPSX-bestand te bekijken met C#

Om het PPSX-bestand te bekijken, gebruiken we

Aspose.Slides voor .NET

API, een veelzijdige, krachtige en gebruiksvriendelijke API voor het C#-platform die met elke viewer kan worden gebruikt. Open

NuGet

pakketbeheerder, zoek naar Aspose.Dia’s en installeren. U kunt ook de volgende opdracht gebruiken vanuit de Package Manager Console.

Pakketbeheer Console-opdracht


PM> Install-Package Aspose.Slides.NET

Stappen om PPSX via C# te bekijken

Aspose.Slides maakt het de ontwikkelaars gemakkelijk om het PPSX-bestand te bekijken met slechts enkele regels code.

  1. Instantieer een presentatie-object en laad het PPSX-bestand

  2. Maak een instantie van ResponsiveHtmlController voor opmaak

  3. Maak een instantie van HtmlOptions en stel de eigenschap HtmlFormatter in

  4. Sla de PPSX-presentatie op in HTML-indeling

  5. Roep Process.Start aan met pad naar resulterende HTML om PPSX-inhoud in standaardbrowser te laden

systeem vereisten

Aspose.Slides voor .NET wordt ondersteund op alle belangrijke besturingssystemen. Zorg ervoor dat u aan de volgende vereisten voldoet.

  • Microsoft Windows of een compatibel besturingssysteem met .NET Framework, .NET Core, Windows Azure, Mono of Xamarin Platforms
  • Ontwikkelomgeving zoals Microsoft Visual Studio
  • Aspose.Slides voor .NET waarnaar in uw project wordt verwezen
 

C# voorbeeldcode om het PPSX-bestand te bekijken


string output = System.IO.Path.GetTempPath() + Guid.NewGuid().ToString() + ".html";

// instantiate a Presentation object & load the PPSX file
using (var presentation = new Aspose.Slides.Presentation("templateppsx"))
{
    // create HTML export controller
    var controller = new Aspose.Slides.Export.ResponsiveHtmlController();
    // create an instance of HtmlOptions and set HtmlFormatter property
    var htmlOptions = new Aspose.Slides.Export.HtmlOptions 
    { 
        HtmlFormatter = Aspose.Slides.Export.HtmlFormatter.CreateCustomFormatter(controller) 
    };

    // save the presentation in HTML
    presentation.Save(output, Aspose.Slides.Export.SaveFormat.Html, htmlOptions);
}
// load HTML to view the presentation content
System.Diagnostics.Process.Start(output);
 
  • Over Aspose.Slides voor .NET API

    Aspose.Slides API kan worden gebruikt om Microsoft PowerPoint-documenten te lezen, schrijven, manipuleren en converteren naar PDF, XPS, HTML, TIFF, ODP en verschillende andere formaten. Men kan vanaf het begin nieuwe bestanden maken en deze opslaan in de relevante ondersteunde formaten. Aspose.Slides is een zelfstandige API voor het maken, parseren of manipuleren van presentaties, dia’s en elementen en is niet afhankelijk van software zoals Microsoft of OpenOffice.

    Free App to View PPSX

    Check our live demos to View PPSX with following benefits.

      No need to download or setup anything
      No need to write or compile code
      Just upload PPSX file and hit the "View" button
      Download PPSX file from the link, if required

    PPSX Wat is PPSX bestandsformaat

    PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for Slide Show purpose. It is an update to the PPS file format that was supported by Microsoft PowerPoint 97-2003 versions. When a PPSX file is shared with another user and opened, it starts as PowerPoint show unlike PPTX file that opens in editable mode. The sequence of slide show is the same as in the original presentation. All the slides accompany the images, sounds and other embedded media accompany the presentation slides to the PPSX during the slideshow.

    Meer lezen

    Andere ondersteunde viewerformaten

    Met behulp van C# kan men ook vele andere bestandsindelingen bekijken, waaronder.

    ODP (OpenDocument-presentatie-indeling)
    OTP (Standaardformaat OpenDocument)
    POT (Microsoft PowerPoint-sjabloonbestanden)
    POTM (Microsoft PowerPoint-sjabloonbestand)
    POTX (Microsoft PowerPoint-sjabloonpresentatie)
    PPS (PowerPoint-diavoorstelling)
    PPSM (Diavoorstelling met macro's)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Presentatiebestand met macro's)
    PPTX (Open XML-presentatie-indeling)