Workbook.BeforePrint イベント (2007 System)
更新 : 2007 年 11 月
ブックやブック内の要素が印刷される前に発生します。
名前空間 : Microsoft.Office.Tools.Excel
アセンブリ : Microsoft.Office.Tools.Excel.v9.0 (Microsoft.Office.Tools.Excel.v9.0.dll 内)
構文
'宣言
Public Event BeforePrint As WorkbookEvents_BeforePrintEventHandler
'使用
Dim instance As Workbook
Dim handler As WorkbookEvents_BeforePrintEventHandler
AddHandler instance.BeforePrint, handler
public event WorkbookEvents_BeforePrintEventHandler BeforePrint
例
BeforePrint イベント用ハンドラのコード例を次に示します。このイベント ハンドラは、印刷操作を続行するかキャンセルするかを確認するメッセージを表示します。ユーザーが印刷操作をキャンセルした場合、Microsoft Office Excel がブックを印刷しないように、WorkbookEvents_BeforePrintEventHandler イベント ハンドラの Cancel パラメータが true に設定されます。
この例は、ドキュメント レベルのカスタマイズ用に作成されています。
Sub ThisWorkbook_BeforePrint(ByRef Cancel As Boolean) _
Handles Me.BeforePrint
If DialogResult.No = MessageBox.Show("Are you sure " & _
"you want to print the workbook?", _
"Sample", MessageBoxButtons.YesNo) Then
Cancel = True
MessageBox.Show("Print is canceled.")
End If
End Sub
private void WorkbookBeforePrint()
{
this.BeforePrint +=
new Excel.WorkbookEvents_BeforePrintEventHandler(
ThisWorkbook_BeforePrint);
}
void ThisWorkbook_BeforePrint(ref bool Cancel)
{
if (DialogResult.No == MessageBox.Show("Are you sure " +
"you want to print the workbook?",
"Example", MessageBoxButtons.YesNo))
{
Cancel = true;
MessageBox.Show("Print is canceled.");
}
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。