InitialCursorPosition.cs 456 B

123456789101112131415161718
  1. namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
  2. {
  3. /// <summary>
  4. /// Identifies the initial position of the cursor displayed in the area.
  5. /// </summary>
  6. enum InitialCursorPosition : uint
  7. {
  8. /// <summary>
  9. /// Position the cursor at the beginning of the text
  10. /// </summary>
  11. Start,
  12. /// <summary>
  13. /// Position the cursor at the end of the text
  14. /// </summary>
  15. End
  16. }
  17. }