PrintHiddenSlides Property
Applies To
PrintOptions object.
Description
True if the hidden slides in the specified presentation will be printed. The default value is False. Read/write Long.
See Also
Hidden property.
Example
This example prints all slides, whether visible or hidden, in the active presentation.
With ActivePresentation
.PrintOptions.PrintHiddenSlides = True
.PrintOut
End With