orderOut(_:)
Removes the window from the screen list, which hides the window.
Declaration
func orderOut(_ sender: Any?)Parameters
- sender:
The window to remove.
Discussion
If the window is the key or main window, the window object immediately behind it is made key or main in its place. Calling orderOut(_:) causes the window to be removed from the screen, but does not cause it to be released. See the close() method for information on when a window is released. Calling orderOut(_:) on a child window causes the window to be removed from its parent window before being removed.
The default animation based on the window type will be used when the window is ordered out unless it has been modified by the animationBehavior property.