title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Presentation.PrintOptions property (PowerPoint) |
vbapp10.chm583033 |
|
|
3620e0bb-1dcc-9979-d815-c3f34205aaaf |
06/08/2017 |
medium |
Returns a PrintOptions object that represents print options that are saved with the specified presentation. Read-only.
expression. PrintOptions
expression A variable that represents a Presentation object.
PrintOptions
This example causes hidden slides in the active presentation to be printed, and it scales the printed slides to fit the paper size.
With Application.ActivePresentation
With .PrintOptions
.PrintHiddenSlides = True
.FitToPage = True
End With
.PrintOut
End With
[!includeSupport and feedback]