Share via


DefaultWebOptions.ShowSlideAnimation Property

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

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Property ShowSlideAnimation As MsoTriState
    Get
    Set
'Usage
Dim instance As DefaultWebOptions
Dim value As MsoTriState

value = instance.ShowSlideAnimation

instance.ShowSlideAnimation = value
MsoTriState ShowSlideAnimation { get; set; }

Property Value

Type: Microsoft.Office.Core.MsoTriState
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.

Examples

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

With Presentations(2)

    .WebOptions.ShowSlideAnimation= msoTrue

    .WebPagePreview

End With

See Also

Reference

DefaultWebOptions Interface

DefaultWebOptions Members

Microsoft.Office.Interop.PowerPoint Namespace