AllowBackgroundSave Property

       

True (default) for Microsoft Publisher to save publications in the background, allowing users to perform other actions at the same time. Read/write Boolean.

expression.AllowBackgroundSave

expression   Required. An expression that returns one of the objects in the Applies To list.

Remarks

This setting is saved for each individual user and persists from one session to another.

Example

This example turns off background save, so publications do not save in the background.

Sub DoNotSaveInBackground()
    Options.AllowBackgroundSave = False
End Sub