InputFormMode.cs
1 namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard 2 { 3 /// <summary> 4 /// Identifies the text entry mode. 5 /// </summary> 6 enum InputFormMode : uint 7 { 8 /// <summary> 9 /// Displays the text entry area as a single-line field. 10 /// </summary> 11 SingleLine, 12 13 /// <summary> 14 /// Displays the text entry area as a multi-line field. 15 /// </summary> 16 MultiLine, 17 } 18 }