Skip to content

Latest commit

 

History

History
65 lines (36 loc) · 1.28 KB

PowerPoint.SlideShowSettings.ShowWithNarration.md

File metadata and controls

65 lines (36 loc) · 1.28 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
SlideShowSettings.ShowWithNarration property (PowerPoint)
vbapp10.chm514011
vbapp10.chm514011
PowerPoint.SlideShowSettings.ShowWithNarration
65390c53-abeb-ca9e-0697-f68dcb455324
06/08/2017
medium

SlideShowSettings.ShowWithNarration property (PowerPoint)

Determines whether the specified slide show is shown with narration. Read/write.

Syntax

expression. ShowWithNarration

expression A variable that represents a SlideShowSettings object.

Return value

MsoTriState

Remarks

The value of the ShowWithNarration property can be one of these MsoTriState constants.

Constant Description
msoFalse The specified slide show is shown without narration.
msoTrue The specified slide show is shown with narration.

Example

This example runs a slide show of the active presentation with animation and narration turned off.

With ActivePresentation.SlideShowSettings

    .ShowWithAnimation = msoFalse

    .ShowWithNarration = msoFalse

    .Run

End With

See also

SlideShowSettings Object

[!includeSupport and feedback]