OutputType Property

Applies To

PrintOptions object.

Description

Returns or sets a value that indicates which component (slides, handouts, notes pages, or an outline) of the presentation is to be printed. Can be one of the following PpPrintOutputType constants: ppPrintOutputBuildSlides, ppPrintOutputNotesPages, ppPrintOutputOutline, ppPrintOutputSixSlideHandouts, ppPrintOutputSlides, ppPrintOutputThreeSlideHandouts, or ppPrintOutputTwoSlideHandouts. The default value is ppPrintOutputSlides. Read/write Long.

Example

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

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