Application.SlideShowWindows Property

PowerPoint Developer Reference

Returns a SlideShowWindows collection that represents all open slide show windows. Read-only.

Syntax

expression.SlideShowWindows

expression   A variable that represents a Application object.

Return Value
SlideShowWindows

Remarks

For information about returning a single member of a collection, see How to: Return Objects from Collections.

Example

This example runs a slide show in a window and sets the height and width of the slide show window.

Visual Basic for Applications
  With Application
    .Presentations(1).SlideShowSettings.Run
    With .SlideShowWindows(1)
        .Height = 250
        .Width = 250
    End With
End With

See Also