PrintOptions.OutputType property (PowerPoint)

Returns or sets a value that indicates which component (slides, handouts, notes pages, or an outline) of the presentation is to be printed. Read/write.

Syntax

expression. OutputType

expression A variable that represents an PrintOptions object.

Return value

PpPrintOutputType

Remarks

The value of the OutputType property can be one of these PpPrintOutputType constants.

ppPrintOutputBuildSlides
ppPrintOutputFourSlideHandouts
ppPrintOutputNineSlideHandouts
ppPrintOutputNotesPages
ppPrintOutputOneSlideHandouts
ppPrintOutputOutline
ppPrintOutputSixSlideHandouts
ppPrintOutputSlides
ppPrintOutputThreeSlideHandouts
ppPrintOutputTwoSlideHandouts

Example

This example prints handouts of the active presentation with six slides to a page.

With ActivePresentation

    .PrintOptions.OutputType = ppPrintOutputSixSlideHandouts

    .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.