OutputType Property

PpPrintOutputType

PpPrintOutputType can be one of these PpPrintOutputType constants.
ppPrintOutputBuildSlides
ppPrintOutputFourSlideHandouts
ppPrintOutputNineSlideHandouts
ppPrintOutputNotesPages
ppPrintOutputOneSlideHandouts
ppPrintOutputOutline
ppPrintOutputSixSlideHandouts
ppPrintOutputSlides
ppPrintOutputThreeSlideHandouts
ppPrintOutputTwoSlideHandouts

expression.OutputType

*expression   * Required. An expression that returns one of the objects in the Applies To list.

Example

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

With ActivePresentation
    .PrintOptions.OutputType = ppPrintOutputSixSlideHandouts
    .PrintOut
End With

Applies to | PrintOptions Object