PrintOut Method Example

This example prints two uncollated copies of each slide — whether visible or hidden — from slide two to slide five in the active presentation.

With Application.ActivePresentation
    .PrintOptions.PrintHiddenSlides = True
    .PrintOut From:=2, To:=5, Copies:=2, Collate:=False
End With

This example prints a single copy of all slides in the active presentation to the file Testprnt.prn.

Application.ActivePresentation.PrintOut _
    PrintToFile:="TestPrnt"