Class SlideShowWindows (PowerPoint VBA)

A collection of all the SlideShowWindow objects that represent the open slide shows in Microsoft PowerPoint. To use a SlideShowWindows class variable it first needs to be instantiated, for example


Dim ssws as SlideShowWindows
Set ssws = SlideShowWindows

Count

Returns the number of objects in the specified collection.


Dim lngCount As Long
lngCount = SlideShowWindows.Count

Item

Returns a single SlideShowWindow object from the specified SlideShowWindows collection.

Item (Index)

Index: The index number of the single SlideShowWindow object in the collection to be returned.


Dim ssw As SlideShowWindow
Set ssw = SlideShowWindows(Index:=1)