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

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

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

POTX Dosyasını C# Kullanarak Görüntüleme

POTX 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

POTX'i C# ile Görüntüleme Adımları

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

  1. Bir Sunum nesnesi oluşturun ve POTX 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. POTX sunumunu HTML formatında kaydedin

  5. POTX 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
 

POTX 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 POTX file
using (var presentation = new Aspose.Slides.Presentation("templatepotx"))
{
    // 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 POTX

    Check our live demos to View POTX with following benefits.

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

    POTX POTX Dosya Biçimi nedir

    Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with Microsoft PowerPoint 2007 and above. This format was created to replace the POT file format that is based on the binary file format and is supported with PowerPoint 97-2003. The files generated can be used to create presentations that have same layout and other settings required to be applied to new files. These settings can include styles, backgrounds, colour palette, fonts and defaults. Such files are generated in order to create ready-to-use template files for official use.

    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ı)
    PPS (PowerPoint Slayt Gösterisi)
    PPSM (Makro Etkin Slayt Gösterisi)
    PPSX (PowerPoint Slayt Gösterisi)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Makro Etkin Sunum Dosyası)
    PPTX (Açık XML sunum Formatı)