Partager via


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

Mise à jour : novembre 2007

Se produit lorsqu'un nouveau classeur est créé.

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 New As WorkbookEvents_NewEventHandler

Dim instance As Workbook
Dim handler As WorkbookEvents_NewEventHandler

AddHandler instance.New, handler
public event WorkbookEvents_NewEventHandler New

Exemples

L'exemple de code suivant illustre un gestionnaire pour l'événement New. Le gestionnaire d'événements agrandit la fenêtre d'application Microsoft Office Excel lorsqu'un nouveau classeur est créé.

Cet exemple illustre une personnalisation au niveau du document.

Sub ThisWorkbook_New() Handles Me.New
    Me.Application.WindowState = Excel.XlWindowState.xlMaximized
End Sub
private void WorkbookNew()
{
    this.New +=
        new Microsoft.Office.Tools.Excel.WorkbookEvents_NewEventHandler(
        ThisWorkbook_New);
}

void ThisWorkbook_New()
{
    this.Application.WindowState = Excel.XlWindowState.xlMaximized;
}

Autorisations

Voir aussi

Référence

Workbook, classe

Membres Workbook

Microsoft.Office.Tools.Excel, espace de noms