Partager via


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

Concepts

SlideShowSettings Object

SlideShowSettings Object Members