Share via


Options Property [Publisher 2003 VBA Language Reference]

Returns an Options object that represents application settings you can set in Publisher.

expression.Options

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example disables background saves and then saves the active publication.

Sub SetGlobalSaveOptions()

    With Options
        .AllowBackgroundSave = False
    End With

    ActiveDocument.Save

End Sub

Applies to | Application Object