InitialCursorPosition.cs
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 13 /// <summary> 14 /// Position the cursor at the end of the text 15 /// </summary> 16 End, 17 } 18 }