MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / SetTextAsUser

Method SetTextAsUser

Source/Engine/UI/GUI/Common/TextBoxBase.cs:490–496  ·  view source on GitHub ↗

Sets the text as it was entered by user (focus, change value, defocus). The value.

(string value)

Source from the content-addressed store, hash-verified

488 /// </summary>
489 /// <param name="value">The value.</param>
490 [NoAnimate]
491 public void SetTextAsUser(string value)
492 {
493 Focus();
494 SetText(value);
495 RemoveFocus();
496 }
497
498 /// <summary>
499 /// Gets length of the text

Callers 2

OnSelectStringClickedMethod · 0.80
OnAddStringClickedMethod · 0.80

Calls 2

FocusFunction · 0.85
SetTextFunction · 0.85

Tested by

no test coverage detected