Enum TextField.RetainMode
- Namespace
- UILib.Components
- Assembly
- UILib.dll
An enum of modes which determine in which cases a TextField will retain the current user input.
The input will always be retained on a valid submit.
[Flags]
public enum TextField.RetainMode
Fields
Click = 2When the user clicks something else, the input is retained.
Escape = 1When the user presses escape, the input is retained.
InvalidSubmit = 4Submitting something invalid retains the input.
None = 0Don't retain input in any other special cases.