AnimateShapes

IHtml5Options.AnimateShapes property

Returns or sets shapes animation option. Read/write Boolean.

public bool AnimateShapes { get; set; }

Examples

Example:

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

See Also