- Found in:
- SkyUI
eventOnOptionSelect(inta_option)
Description
GitHub Wiki Description (SkyUI)
Called when a non-interactive option has been selected.
Modify the internal state of the selected option then use the option setters to apply the changes to the active page.
Documentation String
Called when a non-interactive option has been selected
Parameters
inta_option
GitHub Wiki Description (SkyUI)
The option ID.
Examples
Auto-Generated Example
Scriptname MyCoolScript extends SKI_ConfigBase
event OnOptionSelect(int a_option)
Debug.trace("Event received - OnOptionSelect: a_option = " + a_option)
endEvent