AnimateShapes

IHtml5Options.AnimateShapes property

Devuelve o establece la opción de animación de formas. Lectura/escrituraBoolean .

public bool AnimateShapes { get; set; }

Ejemplos

Ejemplo:

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

Ver también