Share via


Effect.Timing Property

PowerPoint Developer Reference

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

Syntax

expression.Timing

expression   A variable that represents an Effect object.

Return Value
Timing

Example

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

Visual Basic for Applications
  Sub SetTiming()
    ActivePresentation.Slides(1).TimeLine _
        .MainSequence(1).Timing.Duration = 1
End Sub

See Also