Options Property.Options Property

Publisher Developer ReferencePublisher Developer Reference

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

Syntax

expression.Options

expression   A variable that represents an Options Property object.

Return Value
Options

Example

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

Visual Basic for Applications
  Sub SetGlobalSaveOptions()
With <strong>Options</strong>
    .AllowBackgroundSave = False
End With

ActiveDocument.Save

End Sub

See Also