EApplication_SlideShowOnNextEventHandler 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 Next 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_SlideShowOnNextEventHandler ( _
    Wn As SlideShowWindow _
)
'Usage
Dim instance As New EApplication_SlideShowOnNextEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void EApplication_SlideShowOnNextEventHandler(
    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 SlideShowOnNext event does not fire when users click Next to move to the next slide, but rather only when they click Next to move within a given slide, for example to run the next animation on the slide.

See Also

Reference

Microsoft.Office.Interop.PowerPoint Namespace

SlideShowOnNext