Share via


PrintOptions.FrameSlides Property

PowerPoint Developer Reference

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.

Visual Basic for Applications
  With ActivePresentation
    .PrintOptions.FrameSlides = msoTrue
    .PrintOut
End With

See Also