_Master.SlideShowTransition Property
Returns a SlideShowTransition object that represents the special effects for the specified slide transition. Read-only.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
ReadOnly Property SlideShowTransition As SlideShowTransition
Get
'Usage
Dim instance As _Master
Dim value As SlideShowTransition
value = instance.SlideShowTransition
SlideShowTransition SlideShowTransition { get; }
Property Value
Type: Microsoft.Office.Interop.PowerPoint.SlideShowTransition
SlideShowTransition
Examples
This example sets slide two in the active presentation to advance automatically after 5 seconds during a slide show and to play a dog bark sound at the slide transition.
With ActivePresentation.Slides(2).SlideShowTransition.AdvanceOnTime = True
.AdvanceTime = 5
.SoundEffect.ImportFromFile "c:\windows\media\dogbark.wav"
End With
ActivePresentation.SlideShowSettings.AdvanceMode = _
ppSlideShowUseSlideTimings