Returns an Options object that represents application settings you can set in Microsoft Publisher.
expression.Options
expression Required. An expression that returns one of the objects in the Applies To list.
This example disables background saves, enables updating personal information on save, and then saves the active publication.
Sub SetGlobalSaveOptions()
With Options
.AllowBackgroundSave = False
.UpdatePersonalInfoOnSave = True
End With
ActiveDocument.Save
End Sub