Timing Property

Microsoft PowerPoint Visual Basic

Timing Property

       

Returns a Timing object that represents the timing properties for an animation sequence.

expression.Timing

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

The following example sets the duration of the first animation sequence on the first slide.

Sub SetTiming()
    ActivePresentation.Slides(1).TimeLine _
        .MainSequence(1).Timing.Duration = 1
End Sub