Skip to content

Latest commit

 

History

History
54 lines (30 loc) · 1.04 KB

PowerPoint.SlideShowView.PresentationElapsedTime.md

File metadata and controls

54 lines (30 loc) · 1.04 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
SlideShowView.PresentationElapsedTime property (PowerPoint)
vbapp10.chm513008
vbapp10.chm513008
PowerPoint.SlideShowView.PresentationElapsedTime
6f710354-1691-4673-f83f-395d510d6999
06/08/2017
medium

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

[!includeSupport and feedback]