Application.Options Property (Publisher)
Returns an Options object that represents application settings you can set in Microsoft Publisher.
Syntax
expression .Options
expression A variable that represents an Application object.
Return Value
Options
Example
This example disables background saves and then saves the active publication.
Sub SetGlobalSaveOptions()
With Options
.AllowBackgroundSave = False
End With
ActiveDocument.Save
End Sub