PrintOptions.NumberOfCopies Property

PowerPoint Developer Reference

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.

Visual Basic for Applications
  With ActivePresentation.PrintOptions
    .NumberOfCopies = 3
    .Collate = True
    .Parent.PrintOut
End With

See Also