title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
SlideShowView.PresentationElapsedTime property (PowerPoint) |
vbapp10.chm513008 |
|
|
6f710354-1691-4673-f83f-395d510d6999 |
06/08/2017 |
medium |
Returns the number of seconds that have elapsed since the beginning of the specified slide show. Read-only.
expression. PresentationElapsedTime
expression A variable that represents a SlideShowView object.
Long
This example goes to slide seven in slide show window one if more than five minutes have elapsed since the beginning of the slide show.
With SlideShowWindows(1).View
If .PresentationElapsedTime > 300 Then
.GotoSlide 7
End If
End With
[!includeSupport and feedback]