- Found in:
- SkyUI
eventOnOptionInputAccept(inta_option, stringa_input)
Description
GitHub Wiki Description (SkyUI)
Called when a new input has been accepted.
Since version 4.
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 new text input has been accepted
Documentation Comment
@since 4
Parameters
inta_option
GitHub Wiki Description (SkyUI)
The option ID.
stringa_input
GitHub Wiki Description (SkyUI)
The accepted input.
Examples
Auto-Generated Example
Scriptname MyCoolScript extends SKI_ConfigBase
event OnOptionInputAccept(int a_option, string a_input)
Debug.trace("Event received - OnOptionInputAccept: a_option = " + a_option + " a_input = " + a_input)
endEvent