Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns or sets the number of copies of a presentation to be printed. The default value is 1. Read/write Long.
Remarks
Specifying a value for the Copies argument of the PrintOut method sets the value of this property.
Example
This example prints three collated copies of the active presentation.
With ActivePresentation.PrintOptions
.NumberOfCopies = 3
.Collate = True
.Parent.PrintOut
End With
Applies to | PrintOptions Object