Skip to content

Latest commit

 

History

History
56 lines (31 loc) · 1.12 KB

PowerPoint.Presentation.SlideShowSettings.md

File metadata and controls

56 lines (31 loc) · 1.12 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.SlideShowSettings property (PowerPoint)
vbapp10.chm583015
vbapp10.chm583015
PowerPoint.Presentation.SlideShowSettings
90a5a5cb-1f78-bbb2-8e4c-eb35aae13c90
06/08/2017
medium

Presentation.SlideShowSettings property (PowerPoint)

Returns a SlideShowSettings object that represents the slide show settings for the specified presentation. Read-only.

Syntax

expression. SlideShowSettings

expression A variable that represents a Presentation object.

Return value

SlideShowSettings

Example

This example starts a slide show meant to be presented by a speaker. The slide show will run with animation and narration turned off.

With Application.ActivePresentation.SlideShowSettings

    .ShowType = ppShowTypeSpeaker

    .ShowWithNarration = False

    .ShowWithAnimation = False

    .Run

End With

See also

Presentation Object

[!includeSupport and feedback]