tgui_input_text ![code/modules/tgui_input/text.dm 55](git.png)
tgui_input_text
Datum used for instantiating and using a TGUI-controlled text input that prompts the user with a message and has an input for text entry.
Vars | |
closed | Boolean field describing if the tgui_input_text was closed by the user. |
---|---|
default | The default (or current) value, shown as a default. |
encode | Whether the input should be stripped using html_encode |
entry | The entry that the user has return_typed in. |
max_length | The maximum length for text entry |
message | The prompt's body, if any, of the TGUI window. |
multiline | Multiline input for larger input boxes. |
start_time | The time at which the text input was created, for displaying timeout progress. |
timeout | The lifespan of the text input, after which the window will close and delete itself. |
title | The title of the TGUI window |
Procs | |
wait | Waits for a user's response to the tgui_text_input's prompt before returning. Returns early if the window was closed by the user. |
Var Details
closed ![code/modules/tgui_input/text.dm 57](git.png)
Boolean field describing if the tgui_input_text was closed by the user.
default ![code/modules/tgui_input/text.dm 59](git.png)
The default (or current) value, shown as a default.
encode ![code/modules/tgui_input/text.dm 61](git.png)
Whether the input should be stripped using html_encode
entry ![code/modules/tgui_input/text.dm 63](git.png)
The entry that the user has return_typed in.
max_length ![code/modules/tgui_input/text.dm 65](git.png)
The maximum length for text entry
message ![code/modules/tgui_input/text.dm 67](git.png)
The prompt's body, if any, of the TGUI window.
multiline ![code/modules/tgui_input/text.dm 69](git.png)
Multiline input for larger input boxes.
start_time ![code/modules/tgui_input/text.dm 71](git.png)
The time at which the text input was created, for displaying timeout progress.
timeout ![code/modules/tgui_input/text.dm 73](git.png)
The lifespan of the text input, after which the window will close and delete itself.
title ![code/modules/tgui_input/text.dm 75](git.png)
The title of the TGUI window
Proc Details
wait
Waits for a user's response to the tgui_text_input's prompt before returning. Returns early if the window was closed by the user.