get_RepeatUntilEndSlide()

Timing::get_RepeatUntilEndSlide() method

This attribute specifies if the effect will repeat until the end of the slide. Read bool.

bool Aspose::Slides::Animation::Timing::get_RepeatUntilEndSlide() override

Remarks

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

// Gets the effects sequence for the first slide
System::SharedPtr<ISequence> effectsSequence = presentation->get_Slides()->idx_get(0)->get_Timeline()->get_MainSequence();

// Gets the first effect of main sequence.
System::SharedPtr<IEffect> effect = effectsSequence->idx_get(0);

// Changes effect Timing/Repeat to "Until End of Slide"
effect->get_Timing()->set_RepeatUntilEndSlide(true);

See Also