PrintOptions.Collate property (PowerPoint)
Determines whether a complete copy of the specified presentation is printed before the first page of the next copy is printed. Read/write.
Syntax
expression. Collate
expression A variable that represents a PrintOptions object.
Return value
MsoTriState
Remarks
Specifying a value for the Collate argument of the PrintOut method sets the value of this property.
The value of the Collate property can be one of these MsoTriState constants.
Constant | Description |
---|---|
msoFalse | A copy of the specified presentation is not printed before the first page of the next copy is printed. |
msoTrue | The default. A complete copy of the specified presentation is printed before the first page of the next copy is printed. |
Example
This example prints three collated copies of the active presentation.
With ActivePresentation.PrintOptions
.NumberOfCopies = 3
.Collate = msoTrue
.Parent.PrintOut
End With
See also
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.