Speed Property

Applies To

SlideShowTransition object.

Description

Returns or sets the speed of the transition to the specified slide. Can be one of the following PpTransitionSpeed constants: ppTransitionSpeedFast, ppTransitionSpeedMedium, ppTransitionSpeedMixed, or ppTransitionSpeedSlow. Read/write Long.

Example

This example sets the special effect for the transition to slide one in the active presentation to Strips Down-Left and specifies that the transition be fast.

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