Share via


AdvanceMode Property

AdvanceMode property as it applies to the AnimationSettings object.

PpAdvanceMode

PpAdvanceMode can be one of these PpAdvanceMode constants.
ppAdvanceModeMixed
ppAdvanceOnClick
ppAdvanceOnTime

expression.AdvanceMode

*expression   * Required. An expression that returns one of the above objects.

AdvanceMode property as it applies to the SlideShowSettings object.

PpSlideShowAdvanceMode

PpSlideShowAdvanceMode can be one of these PpSlideShowAdvanceMode constants.
ppSlideShowManualAdvance
ppSlideShowRehearseNewTimings
ppSlideShowUseSlideTimings

expression.AdvanceMode

*expression   * Required. An expression that returns one of the above objects.

AdvanceMode property as it applies to the SlideShowView object.

PpSlideShowAdvanceMode

PpSlideShowAdvanceMode can be one of these PpSlideShowAdvanceMode constants.
ppSlideShowManualAdvance
ppSlideShowRehearseNewTimings
ppSlideShowUseSlideTimings

expression.AdvanceMode

*expression   * Required. An expression that returns one of the above objects.

Example

As it applies to the AnimationSettings object.

This example sets shape two on slide one in the active presentation to become animated automatically after five seconds.

With ActivePresentation.Slides(1).Shapes(2).AnimationSettings
    .AdvanceMode = ppAdvanceOnTime
    .AdvanceTime = 5
    .TextLevelEffect = ppAnimateByAllLevels
    .Animate = True
End With

Applies to | AnimationSettings Object | SlideShowSettings Object | SlideShowView Object

See Also | AdvanceOnTime Property | AdvanceTime Property