SlideShowWindows Interface

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

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

Syntax

'Declaration
<GuidAttribute("91493456-5A91-11CF-8700-00AA0060263B")> _
Public Interface SlideShowWindows _
    Inherits Collection
'Usage
Dim instance As SlideShowWindows
[GuidAttribute("91493456-5A91-11CF-8700-00AA0060263B")]
public interface SlideShowWindows : Collection

Examples

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 Run() method 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

Reference

SlideShowWindows Members

Microsoft.Office.Interop.PowerPoint Namespace