Partager via


Workbook.BeforePrint, événement (System 2007)

Mise à jour : novembre 2007

Se produit avant l'impression du classeur (ou de tout élément qui s'y trouve).

Espace de noms :  Microsoft.Office.Tools.Excel
Assembly :  Microsoft.Office.Tools.Excel.v9.0 (dans Microsoft.Office.Tools.Excel.v9.0.dll)

Syntaxe

Public Event BeforePrint As WorkbookEvents_BeforePrintEventHandler

Dim instance As Workbook
Dim handler As WorkbookEvents_BeforePrintEventHandler

AddHandler instance.BeforePrint, handler
public event WorkbookEvents_BeforePrintEventHandler BeforePrint

Exemples

L'exemple de code suivant illustre un gestionnaire pour l'événement BeforePrint. Le gestionnaire d'événements invite l'utilisateur à continuer ou à annuler l'opération d'impression. Si l'utilisateur annule l'opération d'impression, le paramètre Cancel du gestionnaire d'événements WorkbookEvents_BeforePrintEventHandler a la valeur true afin que Microsoft Office Excel n'imprime pas le classeur.

Cet exemple illustre une personnalisation au niveau du document.

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.");
    }
}

Autorisations

Voir aussi

Référence

Workbook, classe

Membres Workbook

Microsoft.Office.Tools.Excel, espace de noms