SlideShowWindows Property Example
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