Difference between revisions of "PlugIn Development:GameEx Event App Exit Function"

From Spesoft/GameEx Wiki
Jump to navigation Jump to search
(Created page with "==<span style="font-size:150%;">Event App Exit Function [GameEx]</span>== This function is called when GameEx exits. Using this function call, you can run code to do various t...")
 
Line 1: Line 1:
==<span style="font-size:150%;">Event App Exit Function [GameEx]</span>==
==<span style="font-size:125%; color:darkblue;">Event App Exit Function [GameEx]</span>==
This function is called when GameEx exits. Using this function call, you can run code to do various things, such as save configuration files or launch external programs.
This function is called when GameEx exits. Using this function call, you can run code to do various things, such as save configuration files or launch external programs.
If you don't have code to run, you can simply leave this section blank.
If you don't have code to run, you can simply leave this section blank.

Revision as of 21:06, 26 April 2014

Event App Exit Function [GameEx]

This function is called when GameEx exits. Using this function call, you can run code to do various things, such as save configuration files or launch external programs. If you don't have code to run, you can simply leave this section blank.

Code Examples

VB.NET syntax:

Public Sub Event_App_Exit()
     'Run some code here!
End Sub

C# syntax:

public void Event_App_Exit()
{
     //Run some code here!		
}