Application.BackgroundPrintingStatus 属性 (Word)
返回后台打印队列中打印作业的编号。 只读 Long。
语法
expression。 BackgroundPrintingStatus
expression:表示 Application 对象的变量。
示例
本示例返回当前排队等候后台打印的 Word 打印任务数目。
Dim lngStatus As Long
If Options.PrintBackground = True Then
lngStatus = Application.BackgroundPrintingStatus
End If
如果打印任务数大于 0(零),本示例将在状态栏中显示消息。
If Application.BackgroundPrintingStatus > 0 Then
StatusBar = Application.BackgroundPrintingStatus _
& " print jobs are queued up"
End If
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。