AnimationSettings.TextLevelEffect property (PowerPoint)

Indicates whether the text in the specified shape is animated by first-level paragraphs, second-level paragraphs, or some other level of paragraphs (up to fifth-level paragraphs). Read/write.

Syntax

expression. TextLevelEffect

expression A variable that represents a AnimationSettings object.

Return value

PpTextLevelEffect

Remarks

For the TextLevelEffect property setting to take effect, the Animate property must be set to True.

The value of the TextLevelEffect property can be one of these PpTextLevelEffect constants.

ppAnimateByAllLevels
ppAnimateByFifthLevel
ppAnimateByFirstLevel
ppAnimateByFourthLevel
ppAnimateBySecondLevel
ppAnimateByThirdLevel
ppAnimateLevelMixed
ppAnimateLevelNone

Example

This example adds a title slide and title text to the active presentation and sets the title to be built letter by letter.

With ActivePresentation.Slides.Add(1, ppLayoutTitleOnly).Shapes(1)

    .TextFrame.TextRange.Text = "Sample title"

    With .AnimationSettings

        .Animate = True

        .TextLevelEffect = ppAnimateByFirstLevel

        .TextUnitEffect = ppAnimateByCharacter

        .EntryEffect = ppEffectFlyFromLeft

    End With

End With

See also

AnimationSettings Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.