Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines whether a thin frame is placed around the border of the printed slides. Read/write.
expression. FrameSlides
expression A variable that represents a PrintOptions object.
MsoTriState
The FrameSlides property applies to printed slides, handouts, and notes pages.
The value of the FrameSlides property can be one of these MsoTriState constants.
Constant | Description |
---|---|
msoFalse | A thin frame is not placed around the border of the printed slides. |
msoTrue | A thin frame is placed around the border of the printed slides. |
This example prints the active presentation with a frame around each slide.
With ActivePresentation
.PrintOptions.FrameSlides = msoTrue
.PrintOut
End With
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.