Share via


SlideShowTransition.Speed Property

PowerPoint Developer Reference

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.

Visual Basic for Applications
  With ActivePresentation.Slides(1).SlideShowTransition
    .EntryEffect = ppEffectStripsDownLeft
    .Speed = ppTransitionSpeedFast
End With

See Also