Difference between revisions of "PlugIn Development:GameEx Configure Function"
Jump to navigation
Jump to search
m (Adultery moved page PlugIn Development:GameEx Configure to PlugIn Development:GameEx Configure Function) |
|||
Line 1: | Line 1: | ||
==<span style="font-size: | ==<span style="font-size:125%; color:darkblue;">Configure PlugIn [GameEx]</span>== | ||
This function is called when the user configures the PlugIn from the PlugIn Manager interface. | This function is called when the user configures the PlugIn from the PlugIn Manager interface. | ||
Typically you would launch a configuration window from this sub. If your plugin doesn't require user configuration, you can simply leave this area empty. | Typically you would launch a configuration window from this sub. If your plugin doesn't require user configuration, you can simply leave this area empty. |
Revision as of 21:01, 26 April 2014
Configure PlugIn [GameEx]
This function is called when the user configures the PlugIn from the PlugIn Manager interface. Typically you would launch a configuration window from this sub. If your plugin doesn't require user configuration, you can simply leave this area empty.
Code Examples
VB.NET syntax:
Public Sub Configure() Dim config As New Configuration config.ShowDialog() End Sub
C# syntax:
public void Configure() { using(Configuration config = new Configuration()) { config.ShowDialog(null); } }