Timing Property

Timing Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

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