Animate Property

Applies To

AnimationSettings object.

Description

True if the specified shape is animated during a slide show. Read/write Long.

Remarks

This property must be set to True for any of the other properties of the AnimationSettings object to take effect.

See Also

AnimationOrder property.

Example

This example specifies that the title on slide two in the active presentation appear dimmed after the title is built. If the title is the last or only shape to be built on slide two, the text won't be dimmed.

With ActivePresentation.Slides(2).Shapes.Title.AnimationSettings
    .TextLevelEffect = ppAnimateByAllLevels
    .AfterEffect = ppAfterEffectDim
    .Animate = True
End With