SlideShowSettings.ShowWithAnimation property (PowerPoint)
Determines whether the specified slide show displays shapes with assigned animation settings. Read/write.
expression. ShowWithAnimation
expression A variable that represents a SlideShowSettings object.
MsoTriState
The value of the ShowWithAnimation property can be one of these MsoTriState constants.
Constant | Description |
---|---|
msoFalse | The specified slide show displays shapes without assigned animation settings. |
msoTrue | The specified slide show displays shapes with assigned animation settings. |
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
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.