AnimateTextType

Effect.AnimateTextType property

Defines an animate text type for effect. The shape text can be animated by letter, by word or all at once. Read/write AnimateTextType.

public AnimateTextType AnimateTextType { get; set; }

Examples

[C#]
using (Presentation presentation = new Presentation("demo.pptx"))
{
    // Get the first effect of the first slide.
    IEffect firstSlideEffect = presentation.Slides[0].Timeline.MainSequence[0];
    
    // Change the effect Animate text type to "By letter"
    firstSlideEffect.AnimateTextType = AnimateTextType.ByLetter;
}

See Also