SlideShowTransition.Speed Property
Represents the speed of the transition to the specified slide. Read/write.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Property Speed As PpTransitionSpeed
Get
Set
'Usage
Dim instance As SlideShowTransition
Dim value As PpTransitionSpeed
value = instance.Speed
instance.Speed = value
PpTransitionSpeed Speed { get; set; }
Property Value
Type: Microsoft.Office.Interop.PowerPoint.PpTransitionSpeed
PpTransitionSpeed
Remarks
The value of the Speed property can be one of these PpTransitionSpeed constants.
ppTransitionSpeedFast |
ppTransitionSpeedMedium |
ppTransitionSpeedMixed |
ppTransitionSpeedSlow |
Examples
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