BackgroundPrintingStatus Property

Applies To

Application object.

Description

Returns the number of print jobs in the background printing queue. Read-only Long.

See Also

BackgroundSavingStatus property.

Example

This example returns the number of Word print jobs currently queued up for background printing.

If Options.PrintBackground = True Then
    jobs = Application.BackgroundPrintingStatus
End If
If the number of print jobs is greater than 0 (zero), this example displays a message in the status bar.

If Application.BackgroundPrintingStatus > 0 Then
    StatusBar = Application.BackgroundPrintingStatus & " print jobs are queued up"
End If