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