EApplication_SlideShowOnPreviousEventHandler Delegate

A delegate for an event in the corresponding object. After you implement a callback method for the event, use this delegate to connect the callback method to the event.

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

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

Syntax

'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub EApplication_SlideShowOnPreviousEventHandler ( _
    Wn As SlideShowWindow _
)
'Usage
Dim instance As New EApplication_SlideShowOnPreviousEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void EApplication_SlideShowOnPreviousEventHandler(
    SlideShowWindow Wn
)

Parameters

Remarks

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.

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.

See Also

Reference

Microsoft.Office.Interop.PowerPoint Namespace