Skip to content

Latest commit

 

History

History
67 lines (37 loc) · 1.47 KB

PowerPoint.PrintOptions.Collate.md

File metadata and controls

67 lines (37 loc) · 1.47 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
PrintOptions.Collate property (PowerPoint)
vbapp10.chm517003
vbapp10.chm517003
PowerPoint.PrintOptions.Collate
4cf1d714-6ea2-fce5-340e-202d91ad1137
06/08/2017
medium

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

PrintOptions Object

[!includeSupport and feedback]