Workbook.WindowDeactivate, événement (System 2007)
Mise à jour : novembre 2007
Se produit lors de la désactivation d'une fenêtre de classeur.
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 WindowDeactivate As WorkbookEvents_WindowDeactivateEventHandler
Dim instance As Workbook
Dim handler As WorkbookEvents_WindowDeactivateEventHandler
AddHandler instance.WindowDeactivate, handler
public event WorkbookEvents_WindowDeactivateEventHandler WindowDeactivate
Exemples
L'exemple de code suivant illustre un gestionnaire pour l'événement WindowDeactivate. Le gestionnaire d'événements réduit la fenêtre du classeur qui a été désactivée.
Cet exemple illustre une personnalisation au niveau du document.
Private Sub ThisWorkbook_WindowDeactivate(ByVal Wn As Excel.Window) _
Handles Me.WindowDeactivate
Wn.WindowState = Excel.XlWindowState.xlMinimized
End Sub
private void WorkbookWindowDeactivate()
{
this.WindowDeactivate +=
new Excel.WorkbookEvents_WindowDeactivateEventHandler(
ThisWorkbook_WindowDeactivate);
}
private void ThisWorkbook_WindowDeactivate(Excel.Window Wn)
{
Wn.WindowState = Excel.XlWindowState.xlMinimized;
}
Autorisations
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.