Collate Property
Determines whether a complete copy of the specified presentation is printed before the first page of the next copy is printed. Read/write MsoTriState.
MsoTriState can be one of these MsoTriState constants. |
msoCTrue |
msoFalse |
msoTriStateMixed |
msoTriStateToggle |
msoTrue Default. A complete copy of the specified presentation is printed before the first page of the next copy is printed. |
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 = msoTrue
.Parent.PrintOut
End With