Determines whether the specified slide show displays shapes with assigned animation settings. Read/write MsoTriState.
| MsoTriState can be one of these MsoTriState constants. |
| msoCTrue |
| msoFalse |
| msoTriStateMixed |
| msoTriStateToggle |
| msoTrue The specified slide show displays shapes with assigned animation settings. |
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