FrameSlides Property

MsoTriState

MsoTriState can be one of these MsoTriState constants.
msoCTrue
msoFalse Default.
msoTriStateMixed
msoTriStateToggle
msoTrue A thin frame is placed around the border of the printed slides.

Example

This example prints the active presentation with a frame around each slide.

With ActivePresentation
    .PrintOptions.FrameSlides = msoTrue
    .PrintOut
End With

Applies to | PrintOptions Object