Share via


PlaySettings.RewindMovie Property

Determines whether the first frame of the specified movie is automatically redisplayed as soon as the movie has finished playing. Read/write.

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

Syntax

'Declaration
Property RewindMovie As MsoTriState
    Get
    Set
'Usage
Dim instance As PlaySettings
Dim value As MsoTriState

value = instance.RewindMovie

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

Property Value

Type: Microsoft.Office.Core.MsoTriState
MsoTriState

Remarks

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

Constant

Description

msoFalse

The first frame of the specified movie is not automatically redisplayed as soon as the movie has finished playing.

msoTrue

The first frame of the specified movie is automatically redisplayed as soon as the movie has finished playing.

Examples

This example specifies that the first frame of the movie represented by shape three on slide one in the active presentation will be automatically redisplayed when the movie has finished playing. Shape three must be a movie object.

Set OLEobj = ActivePresentation.Slides(1).Shapes(3)

OLEobj.AnimationSettings.PlaySettings.RewindMovie= msoTrue

See Also

Reference

PlaySettings Interface

PlaySettings Members

Microsoft.Office.Interop.PowerPoint Namespace