IHtml5Options

IHtml5Options interface

Represents a HTML5 exporting options.

public interface IHtml5Options : ISaveOptions

Properties

NameDescription
AnimateShapes { get; set; }Returns or sets shapes animation option. Read/write Boolean.
AnimateTransitions { get; set; }Returns or sets transitions animation option. Read/write Boolean.
AsISaveOptions { get; }Returns ISaveOptions interface. Read-only ISaveOptions.
EmbedImages { get; set; }Returns or sets images embedding option. Read/write Boolean.
NotesCommentsLayouting { get; set; }Provides options that control how notes and comments is placed in exported document. Read/write INotesCommentsLayoutingOptions.
OutputPath { get; set; }Determines where external resources should be stored. Read/write String.

Examples

Example:

[C#]
using (Presentation pres = new Presentation("demo.pptx"))
{
  pres.Save("demo-animate-shapes-and-transitions.html", SaveFormat.Html5, new Html5Options()
  {
      AnimateShapes = true,
      AnimateTransitions = true
  });
}

See Also