PrintOptions Property Example

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