get_AnimateShapes()

IHtml5Options::get_AnimateShapes() method

Returns shapes animation option. Read bool.

virtual bool Aspose::Slides::Export::IHtml5Options::get_AnimateShapes()=0

Remarks

Example:

auto pres = System::MakeObject<Presentation>(u"demo.pptx");

auto options = System::MakeObject<Html5Options>();
options->set_AnimateShapes(true);

pres->Save(u"demo-animate-shapes.html", SaveFormat::Html5, options);

See Also