Share via


WebOptions.ShowSlideAnimation Property

PowerPoint Developer Reference

Determines whether slide animations are enabled when previewing, saving, or publishing a Web presentation. Read/write.

Syntax

expression.ShowSlideAnimation

expression   A variable that represents a WebOptions object.

Return Value
MsoTriState

Remarks

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

Constant Description
msoFalse Slide animations are disabled when previewing, saving, or publishing a Web presentation.
msoTrue Slide animations are enabled when previewing, saving, or publishing a Web presentation.

Example

This example specifies that slide animations in presentation two are enabled for the Web presentation. It then previews the Web page.

Visual Basic for Applications
  With Presentations(2)
    .WebOptions.ShowSlideAnimation = msoTrue
    .WebPagePreview
End With

See Also