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

PPSM File Viewer för .NET

Visa presentationsfiler som PPSM utan Microsoft PowerPoint eller Office Automation

Hur man visar PPSM-fil med C#

För att se PPSM-filen använder vi

Aspose.Slides för .NET

API som är ett funktionsrikt, kraftfullt och lättanvänt API för C#-plattform för att användas med vilken Viewer som helst. Öppen

NuGet

pakethanterare, sök efter Aspose.Slides och installera. Du kan också använda följande kommando från Package Manager Console.

Pakethanterarens konsolkommando


PM> Install-Package Aspose.Slides.NET

Steg för att se PPSM via C#

Aspose.Slides gör det enkelt för utvecklarna att se PPSM-filen med bara några rader kod.

  1. Instantiera ett presentationsobjekt och ladda PPSM-filen

  2. Skapa en instans av ResponsiveHtmlController för formatering

  3. Skapa en instans av HtmlOptions och ställ in egenskapen HtmlFormatter

  4. Spara PPSM-presentationen i HTML-format

  5. Ring Process.Börja med sökvägen till resulterande HTML för att ladda PPSM-innehåll i standardwebbläsaren

Systemkrav

Aspose.Slides för .NET stöds på alla större operativsystem. Se bara till att du har följande förutsättningar.

  • Microsoft Windows eller ett kompatibelt operativsystem med .NET Framework, .NET Core, Windows Azure, Mono eller Xamarin-plattformar
  • Utvecklingsmiljö som Microsoft Visual Studio
  • Aspose.Slides för .NET som refereras till i ditt projekt
 

C# exempelkod för att se PPSM-fil


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

// instantiate a Presentation object & load the PPSM file
using (var presentation = new Aspose.Slides.Presentation("templateppsm"))
{
    // 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);
 
  • Om Aspose.Slides för .NET API

    Aspose.Slides API kan användas för att läsa, skriva, manipulera och konvertera Microsoft PowerPoint-dokument till PDF, XPS, HTML, TIFF, ODP och olika andra format. Man kan skapa nya filer från grunden och spara dem i relevanta format som stöds. Aspose.Slides är ett fristående API för att skapa, analysera eller manipulera presentationer, bilder och element och det är inte beroende av någon programvara som Microsoft eller OpenOffice.

    Free App to View PPSM

    Check our live demos to View PPSM with following benefits.

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

    PPSM Vad är PPSM filformatet

    Files with PPSM extension represent Macro-enabled Slide Show file format created with Microsoft PowerPoint 2007 or higher. Another similar file format is PPTM which differs in opening with Microsoft PowerPoint in editable format instead of running as Slide Show. When run as slide show, the PPSM file shows the presentation slides with contents intact in the slide show and is in read-only mode by default. PPSM files can still be edited in Microsoft PowerPoint by opening it in PowerPoint.

    Läs mera

    Andra visningsformat som stöds

    Med C# kan man också se många andra filformat inklusive.

    ODP (OpenDocument presentationsformat)
    OTP (OpenDocument standardformat)
    POT (Microsoft PowerPoint-mallfiler)
    POTM (Microsoft PowerPoint-mallfil)
    POTX (Presentation av Microsoft PowerPoint-mall)
    PPS (PowerPoint-bildspel)
    PPSX (PowerPoint-bildspel)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Makroaktiverad presentationsfil)
    PPTX (Öppna XML-presentationsformat)