Options Property

Microsoft Publisher Visual Basic

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