DocumentBase.BeforePrint 事件
在列印文件之前發生。
命名空間: Microsoft.Office.Tools.Word
組件: Microsoft.Office.Tools.Word.v4.0.Utilities (在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
語法
'宣告
Public Event BeforePrint As CancelEventHandler
public event CancelEventHandler BeforePrint
備註
若要防止列印文件,請將提供的 CancelEventArgs 物件的 Cancel 引數設定為 true。
範例
下列程式碼範例會在列印文件之前顯示訊息,詢問您是否要列印文件。 若要使用這個範例,請在文件層級專案中的 ThisDocument 類別執行。
Private Sub DocumentBeforePrint()
AddHandler Me.BeforePrint, AddressOf ThisDocument_BeforePrint
End Sub
Private Sub ThisDocument_BeforePrint(ByVal sender As Object, ByVal e As System. _
ComponentModel.CancelEventArgs)
If MessageBox.Show("Do you want to print the document?", "BeforePrint", _
MessageBoxButtons.YesNo) = DialogResult.No Then
e.Cancel = True
End If
End Sub
private void DocumentBeforePrint()
{
this.BeforePrint += new System.ComponentModel.CancelEventHandler(ThisDocument_BeforePrint);
}
void ThisDocument_BeforePrint(object sender, System.ComponentModel.CancelEventArgs e)
{
if (MessageBox.Show("Do you want to print the document?", "BeforePrint",
MessageBoxButtons.YesNo) == DialogResult.No)
{
e.Cancel = true;
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。