Document.Save method (Publisher)

Saves the specified publication.

Syntax

expression.Save

expression A variable that represents a Document object.

Remarks

If the publication has not been previously saved, calling the Save method is equivalent to calling the SaveAs method with the FileName argument set to the value of the publication's Name property.

If the publication has been previously saved, the Save method saves the current version of the publication in the format in which it was opened and in the location to which it was last saved.

Calling the Save method always performs saves in the foreground regardless of whether background saves are enabled.

Example

This example saves the active publication if it has changed since it was last saved.

If ActiveDocument.Saved = False Then ActiveDocument.Save

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.