RepeatUntilEndSlide

Timing.RepeatUntilEndSlide property

This attribute specifies if the effect will repeat until the end of the slide. Read/write Boolean.

public bool RepeatUntilEndSlide { get; set; }

Examples

[C#]
using (Presentation presentation = new Presentation("demo.pptx"))
{
    // Get the effects sequence for the first slide
    ISequence effectsSequence = presentation.Slides[0].Timeline.MainSequence;

    // Get the first effect of main sequence.
    IEffect effect = effectsSequence[0];

    // Change the effect Timing/Repeat to "Until End of Slide"
    effect.Timing.RepeatUntilEndSlide = true;
}

See Also