set_AfterAnimationType()
Effect::set_AfterAnimationType(Aspose::Slides::Animation::AfterAnimationType) method
Defines an after animation type for effect. Write AfterAnimationType.
void Aspose::Slides::Animation::Effect::set_AfterAnimationType(Aspose::Slides::Animation::AfterAnimationType value) override
Remarks
auto presentation = System::MakeObject<Presentation>(u"demo.pptx");
// Get the first effect of the first slide.
System::SharedPtr<IEffect> firstSlideEffect = presentation->get_Slide(0)->get_Timeline()->get_MainSequenceEffect(0);
// Change the effect After animation to "Hide on Next Mouse Click"
firstSlideEffect->set_AfterAnimationType(AfterAnimationType::HideOnNextMouseClick);
See Also
- Enum AfterAnimationType
- Class Effect
- Namespace Aspose::Slides::Animation
- Library Aspose.Slides