InputFormMode.cs 435 B

123456789101112131415161718
  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. /// <summary>
  13. /// Displays the text entry area as a multi-line field.
  14. /// </summary>
  15. MultiLine
  16. }
  17. }