AnimateTransitions

Html5Options.AnimateTransitions-Eigenschaft

Gibt die Option für Übergangsanimation zurück oder setzt sie. Lese-/Schreibbare Boolean.

public bool AnimateTransitions { get; set; }

Beispiele

Beispiel:

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

Siehe Auch