Sequence.FindFirstAnimationForClick method (PowerPoint)

Returns an Effect object that represents the first animation started by the specified click number.

Syntax

expression. FindFirstAnimationForClick( _click_ )

expression A variable that represents a Sequence object.

Parameters

Name Required/Optional Data type Description
click Required Long The specified click number.

Return value

Effect

Example

The following example finds the first animation for the first click of the first slide and changes the effect to a bounce.

Sub FindFirstAnimationClick()

    Dim sldFirst As Slide
    Dim effClick As Effect

    Set sldFirst = ActivePresentation.Slides(1)
    Set effClick = sldFirst.TimeLine.MainSequence _
        .FindFirstAnimationForClick(Click:=1)
    effClick.EffectType = msoAnimEffectBounce

End Sub

See also

Sequence 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.