DisplaySlideMiniature Property

Microsoft PowerPoint Visual Basic

Determines if and when the slide miniature window is displayed automatically. Read/write MsoTriState.

MsoTriState can be one of these MsoTriState constants.
msoCTrue
msoFalse The slide miniature window is not displayed automatically.
msoTriStateMixed
msoTriStateToggle
msoTrue The slide miniature window is displayed automatically when the document window is in black-and-white view, the slide pane is zoomed to greater than 150% of the fit percentage, or a master view is visible.

Remarks

This property is not available in slide show view and slide sorter view. The slide miniature window isn't a member of either the Windows collection or the SlideShowWindows collection.

The fit percentage is determined by a combination of the size of the slide pane and the size of the presentation window. To determine the fit percentage, set the ZoomToFit property to True and then return the value of the Zoom property.

Example

If document window one is in slide view, this example displays the slide miniature window.

With Windows(1).View
    If .Type = ppViewSlide Then .DisplaySlideMiniature = msoTrue
End With