EApplication_SlideSelectionChangedEventHandler 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 at different times depending on the current view.

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

Syntax

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

Parameters

  • SldRange
    Type: Microsoft.Office.Interop.PowerPoint.SlideRange
    The selection of slides. In most cases this would be a single slide (for example, in Slide View you navigate to the next slide), but in some cases this could be multiple slides (for example, a marquee selection in Slide Sorter View).

Remarks

The following table describes when the event occurs in each of the views.

View

Description

Normal, Master

Occurs when the slide in the slide pane changes.

Slide Sorter

Occurs when the selection changes.

Slide, Notes

Occurs when the slide changes.

Outline

Does not occur.

See Also

Reference

Microsoft.Office.Interop.PowerPoint Namespace

SlideSelectionChanged