Partager via


WorkbookBase.WindowResize, événement

Se produit lors du redimensionnement d'une fenêtre du classeur.

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

Syntaxe

'Déclaration
Public Event WindowResize As WorkbookEvents_WindowResizeEventHandler
public event WorkbookEvents_WindowResizeEventHandler WindowResize

Exemples

L'exemple de code suivant illustre un gestionnaire pour l'événement WindowResize. Le gestionnaire d'événements affiche le nom figurant dans la barre de titre de la fenêtre du classeur qui a été redimensionnée.

Cet exemple illustre une personnalisation au niveau du document.

Private Sub ThisWorkbook_WindowResize(ByVal Wn As Excel.Window) _
    Handles Me.WindowResize
    MsgBox(Wn.Caption & " resized.")
End Sub
private void WorkbookWindowResize()
{
    this.WindowResize +=
        new Excel.WorkbookEvents_WindowResizeEventHandler(
        ThisWorkbook_WindowResize);
}

private void ThisWorkbook_WindowResize(Excel.Window Wn)
{
    MessageBox.Show(Wn.Caption + " resized.");
}

Sécurité .NET Framework

Voir aussi

Référence

WorkbookBase Classe

Microsoft.Office.Tools.Excel, espace de noms