Collate Property

Applies To

PrintOptions object.

Description

True if a complete copy of the specified presentation is printed before the first page of the next copy is printed. The default value is True. Read/write Long.

Remarks

Specifying a value for the Collate 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