Slide.TimeLine property (PowerPoint)
Returns a TimeLine object that represents the animation timeline for the slide. Read-only.
Syntax
expression. TimeLine
expression A variable that represents a Slide object.
Return value
TimeLine
Example
The following example adds a bouncing animation to the first shape on the first slide.
Sub NewTimeLineEffect()
Dim sldFirst As Slide
Dim shpFirst As Shape
Set sldFirst = ActivePresentation.Slides(1)
Set shpFirst = sldFirst.Shapes(1)
sldFirst.TimeLine.MainSequence.AddEffect _
Shape:=shpFirst, EffectId:=msoAnimEffectBounce
End Sub
See also
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.