DesktopApplication.Closing

From Xojo Documentation

Event


DesktopApplication.Close()

New in 2021r3

Supported for all project types and targets.

The app is quitting.

Notes

Closing is called after CancelClosing and after the window's CancelClosing and Closing events.

There is nothing you can do to abort the quitting process at that time. If you need to control if your app is allowed to quit in the current context, use DesktopApplication.CancelClosing or DesktopWindow.CancelClosing.

See Also