Word) (Application.DocumentBeforePrint 事件
會在列印任何開啟的文件之前發生。
語法
運算式。DocumentBeforePrint (Doc As Document**, Cancel As Boolean)
表達 變數,表示以類別模組中的事件宣告的 'Application' 物件。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Doc | 必要 | Document | 正在列印的文件。 |
Cancel | 必要 | 布林值 | False 事件發生時。 事件程序會將此引數設定為 True ,如果文件不被列印完成此程序。 |
註解
如需搭配 Application 物件使用 事件的詳細資訊,請參閱 搭配 Application 物件使用事件。
範例
本範例會在列印任何文件之前提示是或否回應使用者。 此程式碼必須放在類別模組中,而且必須正確初始化 類別的實例,才能讓此範例正常運作;如需如何完成此作業的指示,請參閱 搭配 Application 物件使用事件。
Public WithEvents appWord as Word.Application
Private Sub appWord_DocumentBeforePrint _
(ByVal Doc As Document, _
Cancel As Boolean)
Dim intResponse As Integer
intResponse = MsgBox("Have you checked the " _
& "printer for letterhead?", _
vbYesNo)
If intResponse = vbNo Then Cancel = True
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。