AllowBackgroundSave Property

Microsoft Publisher Visual Basic

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