Window.Close method (Project)
Closes a pane or window.
Syntax
expression.Close
expression A variable that represents a Window object.
Example
The following example closes the lower pane of every open window.
Sub CloseWindowsOfActiveProject()
Dim W As Window
For Each W in Application.Windows
If Not (W.BottomPane Is Nothing) Then
W.BottomPane.Close
End If
Next W
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.