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

.NET için PPSM Dosya Görüntüleyici

Microsoft PowerPoint veya Office Otomasyonu olmadan PPSM gibi sunum dosyalarını görüntüleyin

C# Kullanarak PPSM Dosyası Nasıl Görüntülenir

PPSM dosyasını görüntülemek için kullanacağız

Aspose.Slides for .NET

Herhangi bir Görüntüleyici ile kullanılacak C# platformu için zengin özelliklere sahip, güçlü ve kullanımı kolay bir API olan API. Açık

NuGet

paket yöneticisi, ara Aspose.Slides ve yükleyin. Paket Yöneticisi Konsolundan aşağıdaki komutu da kullanabilirsiniz.

Paket Yöneticisi Konsol Komutu


PM> Install-Package Aspose.Slides.NET

PPSM'yi C# ile Görüntüleme Adımları

Aspose.Slides, geliştiricilerin PPSM dosyasını yalnızca birkaç satır kodla görüntülemesini kolaylaştırır.

  1. Bir Sunum nesnesi oluşturun ve PPSM dosyasını yükleyin

  2. Biçimlendirme için bir ResponsiveHtmlController örneği oluşturun

  3. Bir HtmlOptions örneği oluşturun ve HtmlFormatter özelliğini ayarlayın

  4. PPSM sunumunu HTML formatında kaydedin

  5. PPSM içeriğini varsayılan tarayıcıya yüklemek için ortaya çıkan HTML’nin yolu ile Process.Start’ı arayın

sistem gereksinimleri

Aspose.Slides for .NET tüm büyük işletim sistemlerinde desteklenir. Sadece aşağıdaki ön koşullara sahip olduğunuzdan emin olun.

  • Microsoft Windows veya .NET Framework, .NET Core, Windows Azure, Mono veya Xamarin Platformları ile uyumlu bir işletim sistemi
  • Microsoft Visual Studio gibi geliştirme ortamı
  • Projenizde referans verilen Aspose.Slides for .NET
 

PPSM dosyasını görüntülemek için C# örnek kodu


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);
 
  • Aspose.Slides for .NET API Hakkında

    Aspose.Slides API, Microsoft PowerPoint belgelerini okumak, yazmak, değiştirmek ve PDF, XPS, HTML, TIFF, ODP ve diğer çeşitli formatlara dönüştürmek için kullanılabilir. Sıfırdan yeni dosyalar oluşturabilir ve bunları ilgili desteklenen biçimlerde kaydedebilirsiniz. Aspose.Slides, sunumlar, slaytlar ve öğeler oluşturmak, ayrıştırmak veya değiştirmek için bağımsız bir API’dir ve Microsoft veya OpenOffice gibi herhangi bir yazılıma bağlı değildir.

    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 PPSM Dosya Biçimi nedir

    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.

    Daha Fazla Oku

    Desteklenen Diğer Görüntüleyici Formatları

    C# kullanarak, One dahil olmak üzere diğer birçok dosya biçimini de görüntüleyebilir.

    ODP (OpenDocument Sunum Formatı)
    OTP (OpenDocument Standart Biçimi)
    POT (Microsoft PowerPoint Şablon Dosyaları)
    POTM (Microsoft PowerPoint Şablon Dosyası)
    POTX (Microsoft PowerPoint Şablonu Sunumu)
    PPS (PowerPoint Slayt Gösterisi)
    PPSX (PowerPoint Slayt Gösterisi)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Makro Etkin Sunum Dosyası)
    PPTX (Açık XML sunum Formatı)