ShowType Property

Applies To

SlideShowSettings object.

Description

Returns or sets the show type for the specified slide show. Can be one of the following PpSlideShowType constants: ppShowTypeKiosk, ppShowTypeSpeaker, or ppShowTypeWindow. Read/write Long.

Example

This example runs a slide show of the active presentation in a window, starting with slide two and ending with slide four. The new slide show window is placed in the upper-left corner of the screen, and its width and height are both 300 points.

With ActivePresentation.SlideShowSettings
    .StartingSlide = 2
    .EndingSlide = 4
    .ShowType = ppShowTypeWindow
    With .Run
        .Left = 0
        .Top = 0
        .Width = 300
        .Height = 300
    End With
End With