title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.SlideShowWindows property (PowerPoint) |
vbapp10.chm502006 |
|
|
4beed51c-bb67-6208-c2b1-f1d5b6425d9b |
06/08/2017 |
medium |
Returns a SlideShowWindows collection that represents all open slide show windows. Read-only.
expression. SlideShowWindows
expression A variable that represents an Application object.
SlideShowWindows
For information about returning a single member of a collection, see Returning an object from a collection.
This example runs a slide show in a window and sets the height and width of the slide show window.
With Application
.Presentations(1).SlideShowSettings.Run
With .SlideShowWindows(1)
.Height = 250
.Width = 250
End With
End With
[!includeSupport and feedback]