SlideShowWindows object (PowerPoint)

A collection of all the SlideShowWindow objects that represent the open slide shows in Microsoft PowerPoint.

Example

Use the SlideShowWindows property to return the SlideShowWindows collection. Use SlideShowWindows (index), where index is the window index number, to return a single SlideShowWindow object. The following example reduces the height of slide show window one if it is a full-screen window.

With SlideShowWindows(1)

    If .IsFullScreen Then

        .Height = .Height - 20

    End If

End With

Use the Runmethod to create a new slide show window and add it to the SlideShowWindows collection. The following example runs a slide show of the active presentation.

ActivePresentation.SlideShowSettings.Run

See also

PowerPoint Object Model Reference

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.