/// <summary> /// Triggered by runtime when character is input. /// </summary> /// <param name="textChar">Code of input character.</param> private static void Internal_TriggerCharInput(int textChar) { TextInputEvent ev = new TextInputEvent(textChar); if (OnCharInput != null) { OnCharInput(ev); } }
/// <summary> /// Triggered by runtime when character is input. /// </summary> /// <param name="textChar">Code of input character.</param> private static void Internal_TriggerCharInput(int textChar) { TextInputEvent ev = new TextInputEvent(textChar); if (OnCharInput != null) OnCharInput(ev); }