Occurs upon the application shutdown.
[Visual Basic .NET] |
---|
Public Event OnQuit() |
[C#] |
---|
public void OnQuit(); |
[Managed C++] |
---|
public: void OnQuit(); |
[Java] |
---|
public void onQuit(); |
[Unmanaged C++] |
---|
public: void OnQuit(); |
The OnQuit event is raised by the application upon exiting to let external components such as plugins, out-of-process applications and User Interface plugins perform necessary cleanup operations before the application is terminated. Refer to the code examples below.
|
|