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

See also

PrintOptions Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.