Expand Minimize
This topic has not yet been rated - Rate this topic

Application.SlideShowOnPrevious Event (PowerPoint)

Occurs when the user clicks Previous to move within the current slide.

expression .SlideShowOnPrevious(Wn)

expression An expression that returns an Application object.

Parameters

Name

Required/Optional

Data Type

Description

Wn

Required

SlideShowWindow

The active slideshow window.

To access Application object events, declare a variable to represent the Application object in the General Declarations section of your code. Then set the variable equal to the Application object for which you want to access events. For more information about using events with the Microsoft PowerPoint Application object, see How to: Use Events with the Application Object.

The SlideShowOnPrevious event does not fire when users click Previous to move from one slide to the previous one, but rather only when they click Previous to move within a given slide, for example to rerun the previous animation on the slide.

This example displays a message every time a user clicks Previous to move with the current slide. The example assumes that you have already declared an Application object named App in the General Declarations section of your code, using the WithEvents keyword.

Private Sub App_SlideShowOnPrevious(ByVal Wn As SlideShowWindow)



    Debug.Print "User clicked Previous to move within the current slide."

        

End Sub


Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.