Options.BackgroundSave property (Word)

True if Word saves documents in the background. When Word is saving in the background, users can continue to type and to choose commands. Read/write Boolean.

Syntax

expression. BackgroundSave

expression A variable that represents a 'Options' object.

Example

This example allows users to continue working in a document while Word is saving it.

Options.BackgroundSave = True

This example returns the current status of the Allow background saves option on the Save tab in the Options dialog box.

Dim blnAutoSave As Boolean 
 
blnAutoSave = Options.BackgroundSave

See also

Options Object

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.