PrintOptions.FrameSlides property (PowerPoint)

Determines whether a thin frame is placed around the border of the printed slides. Read/write.

Syntax

expression. FrameSlides

expression A variable that represents a PrintOptions object.

Return value

MsoTriState

Remarks

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.

Example

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

With ActivePresentation

    .PrintOptions.FrameSlides = msoTrue

    .PrintOut

End With

See also

PrintOptions Object

Support and feedback

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.