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