PrintInBackground 属性

       

决定是否在后台打印指定的演示文稿。可读写。MsoTriState 类型。

示例

本示例在后台打印当前演示文稿。

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