PrintInBackground Property

Applies To

PrintOptions object.

Description

True if the specified presentation is printed in the background, which means that you can continue to work while it's being printed. The default value is True. Read/write Long.

Example

This example prints the active presentation in the background.

With ActivePresentation
    .PrintOptions.PrintInBackground = True
    .PrintOut
End With