Workbook.Deactivate Event (Excel)
Occurs when the chart, worksheet, or workbook is deactivated.
Syntax
식 .Deactivate
식 A variable that represents a Workbook object.
Return Value
nothing
Example
This example arranges all open windows when the workbook is deactivated.
Private Sub Workbook_Deactivate()
Application.Windows.Arrange xlArrangeStyleTiled
End Sub