Share via


Options.AllowBackgroundSave Property

Publisher Developer Reference

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

Syntax

expression.AllowBackgroundSave

expression   A variable that represents an Options object.

Return Value
Boolean

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.

Visual Basic for Applications
  Sub DoNotSaveInBackground()
    Options.AllowBackgroundSave = False
End Sub

See Also