SlideShowView.PresentationElapsedTime property (PowerPoint)

Returns the number of seconds that have elapsed since the beginning of the specified slide show. Read-only.

Syntax

expression. PresentationElapsedTime

expression A variable that represents a SlideShowView object.

Return value

Long

Example

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

See also

SlideShowView Object

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.