PrintOptions.NumberOfCopies Property (PowerPoint)
Returns or sets the number of copies of a presentation to be printed. Read/write.
Syntax
expression .NumberOfCopies
expression A variable that represents a PrintOptions object.
Return Value
Long
Remarks
Specifying a value for the Copies argument of the PrintOut method sets the value of this property. The default value is 1.
Example
This example prints three collated copies of the active presentation.
With ActivePresentation.PrintOptions
.NumberOfCopies = 3
.Collate = True
.Parent.PrintOut
End With