Speed Property

Microsoft PowerPoint Visual Basic

Returns or sets a PpTransitionSpeed constant that represents the speed of the transition to the specified slide. Read/write.

PpTransitionSpeed can be one of these PpTransitionSpeed constants.
ppTransitionSpeedFast
ppTransitionSpeedMedium
ppTransitionSpeedMixed
ppTransitionSpeedSlow

expression.Speed

expression    Required. An expression that returns a SlideShowTransition object.

ShowSpeed property as it applies to the Timing object.

Returns or sets a Single that represents the speed, in seconds, of the specified animation. Read/write.

expression.Speed

expression    Required. An expression that returns a Timing object.

Example

ShowAs it applies to the SlideShowTransition object.

This example sets the special effect for the transition to the first slide in the active presentation and specifies that the transition be fast.

With ActivePresentation.Slides(1).SlideShowTransition
    .EntryEffect = ppEffectStripsDownLeft
    .Speed = ppTransitionSpeedFast
End With
				

ShowAs it applies to the Timing object.

This example sets the animation for the main sequence to reverse and sets the speed to one second.

Sub AnimPoints()
    Dim tmlAnim As TimeLine
    Dim spdAnim As Timing

    Set tmlAnim = ActivePresentation.Slides(1).TimeLine
    Set spdAnim = tlnAnim.MainSequence(1).Timing
    With spdAnim
        .AutoReverse = msoTrue
        .Speed = 1
    End With
End Sub