PrintOptions.PrintInBackground property (PowerPoint)

Determines whether the specified presentation is printed in the background. Read/write.

Syntax

expression. PrintInBackground

expression A variable that represents a PrintOptions object.

Return value

MsoTriState

Remarks

The value of the PrintInBackground property can be one of these MsoTriState constants.

Constant Description
msoFalse The specified presentation is not printed in the background.
msoTrue The default. The specified presentation is printed in the background, which means that you can continue to work while it is being printed.

Example

This example prints the active presentation in the background.

With ActivePresentation

    .PrintOptions.PrintInBackground = msoTrue

    .PrintOut

End With

See also

PrintOptions Object

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.