SlideShowTransition.Speed property (PowerPoint)
Represents the speed of the transition to the specified slide. Read/write.
Syntax
expression. Speed
expression A variable that represents a SlideShowTransition object.
Return value
PpTransitionSpeed
Remarks
The value of the Speed property can be one of these PpTransitionSpeed constants.
ppTransitionSpeedFast |
ppTransitionSpeedMedium |
ppTransitionSpeedMixed |
ppTransitionSpeedSlow |
Example
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
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.