ShowWithAnimation Property

Applies To

SlideShowSettings object.

Description

True if the specified slide show displays shapes with assigned animation settings. Read/write Long.

See Also

ShowWithNarration property.

Example

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

With ActivePresentation.SlideShowSettings
    .ShowWithAnimation = False
    .ShowWithNarration = False
    .Run
End With