Application.Options property (Publisher)
Returns an Options object that represents application settings that 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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.