Background for Skyrim SE
Member of the SKI_ConfigBase script
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

  1. inta_option

    GitHub Wiki Description (SkyUI)

    The option ID.

  2. 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

Related Pages


Additional References

View this event on the GitHub Wiki for SkyUI

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.