123456789101112131415161718192021222324252627282930313233343536373839404142 |
- namespace FairyGUI
- {
-
-
-
- public interface IKeyboard
- {
-
-
-
- bool done { get; }
-
-
-
- bool supportsCaret { get; }
-
-
-
-
- string GetInput();
-
-
-
-
-
-
-
-
-
-
-
- void Open(string text, bool autocorrection, bool multiline, bool secure, bool alert, string textPlaceholder, int keyboardType, bool hideInput);
-
-
-
- void Close();
- }
- }
|