Determines whether a thin frame is placed around the border of the printed slides. Read/write MsoTriState. Applies to printed slides, handouts, and notes pages.
| 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