Application.BackgroundSavingStatus property (Word)

Returns the number of files queued up to be saved in the background. Read-only Long.

Syntax

expression. BackgroundSavingStatus

expression A variable that represents an Application object.

Example

This example displays in the status bar the number of documents currently being saved.

Options.BackgroundSave = True 
Documents.Add 
ActiveDocument.SaveAs 
 While Application.BackgroundSavingStatus <> 0 
 StatusBar = "Documents remaining to save: " _ 
 & Application.BackgroundSavingStatus 
 DoEvents 
Wend

See also

Application 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.