Aspose.Slides.WebExtensions 21.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.Slides.WebExtensions --version 21.1.0
NuGet\Install-Package Aspose.Slides.WebExtensions -Version 21.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspose.Slides.WebExtensions" Version="21.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.Slides.WebExtensions --version 21.1.0
#r "nuget: Aspose.Slides.WebExtensions, 21.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Aspose.Slides.WebExtensions as a Cake Addin
#addin nuget:?package=Aspose.Slides.WebExtensions&version=21.1.0

// Install Aspose.Slides.WebExtensions as a Cake Tool
#tool nuget:?package=Aspose.Slides.WebExtensions&version=21.1.0

HTML Export System for Presentations via .NET API

Version 21.1 Nuget

Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License

Aspose.Slides WebExtentions is an HTML export system that enables you to export any MS PowerPoint presentation as a highly customizable HTML/CSS/JS web document.

WebExtension Features

  • Apply custom CSS styles to customize the output.
  • Customized output via DOM manipulation.
  • Support for the JavaScript/CSS animated slide PowerPoint transitions.
  • Individual result does not require you to deal with other user's markup/parameters artifacts.

Getting Started with Aspose.Slides.WebExtensions

Let's give Aspose.Slides.WebExtensions a try! Simply execute Install-Package Aspose.Slides.WebExtensions from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Slides.WebExtensions and want to upgrade the version, please execute Update-Package Aspose.Slides.WebExtensions to get the latest version.

Export PPTX to a Single Page Web Document using C# Code

using System;
using System.IO;
using Aspose.Slides;
using Aspose.Slides.Export.Web;
using Aspose.Slides.WebExtensions;

namespace SinglePageApp
{
    class Program
    {
        static void Main(string[] args)
        {
            using (Presentation pres = new Presentation("demo-transitions.pptx"))
            {
                WebDocument document = pres.ToSinglePageWebDocument("templates\\single-page",
                    @"single-page-output");
                document.Save();
            }

            Console.WriteLine("HTML export is complete...");
        }
    }
}

Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License

Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
21.4.0 6,441 4/22/2021
21.1.0 448 2/4/2021