Component:TextField: Difference between revisions

From Resonite Wiki
m ProbablePrime moved page TextField (Component) to Component:TextField: Creating component Namespace
Missed a field...
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
<translate>
<translate>
<!--T:1-->
<!--T:1-->
{{stub}}
{{Infobox Component
{{Infobox Component
|Image=TextFieldComponent.png
|Image=TextFieldComponent.png
Line 9: Line 8:


<!--T:2-->
<!--T:2-->
== Intoduction ==
The '''TextField''' component is used in conjunction with a [[TextEditor (Component)|TextEditor]], [[Text (Component)|Text]], and [[Button (Component)|Button]] component to provide an editable text field. The Text component stores the text, the TextEditor is the editor for the text, and the Button allows the text editor to appear when then text field is selected.
The '''TextField''' component is used in conjunction with a [[TextEditor (Component)|TextEditor]], [[Text (Component)|Text]], and [[Button (Component)|Button]] component to provide an editable text field. The Text component stores the text, the TextEditor is the editor for the text, and the Button allows the text editor to appear when then text field is selected.


Line 16: Line 13:


<!--T:3-->
<!--T:3-->
== Usage ==
{{Table ComponentFields
{{Table ComponentFields
|Editor|TextEditor|A reference to the text editor component.
|Editor|'''[[Component:TextEditor|TextEditor]]'''|TypeAdv0=true|A reference to the text editor component.
|__text|Text|  
|__text|'''[[Component:Text|Text]]'''|TypeAdv1=true|Internal - The text for this field.
|EditingStarted|Action`1|TypeString2=Action<TextEditor>|  
|EditingStarted|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]&lt;[[Component:TextEditor|TextEditor]]&gt;}}|TypeAdv2=true|The editing started action.
|EditingChanged|Action`1|TypeString3=Action<TextEditor>|  
|EditingChanged|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]&lt;[[Component:TextEditor|TextEditor]]&gt;}}|TypeAdv3=true|The editing changed action.
|EditingFinished|Action`1|TypeString4=Action<TextEditor>|  
|EditingFinished|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]&lt;[[Component:TextEditor|TextEditor]]&gt;}}|TypeAdv4=true|The editing finished action.
|SubmitPressed|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]&lt;[[Component:TextEditor|TextEditor]]&gt;}}|TypeAdv4=true|The submit pressed action.
}}
}}


<!--T:4-->
<!--T:4-->
== Behavior ==
== Usage ==
This component is useful for forms, user input, and other text based projects.


<!--T:5-->
<!--T:5-->
== Examples ==
== Examples ==
=== Videos ===
[[User:ProbablePrime|ProbablePrime]] made a tutorial video on TextFields:
<youtube>ReERNLr-CJo</youtube>


<!--T:6-->
<!--T:6-->
== Related Components ==
== Related Components ==
</translate>
</translate>
[[Category:Components{{#translation:}}|TextField (Component){{#translation:}}]]
[[Category:Components{{#translation:}}|Text Field]]
[[Category:ComponentStubs]]
[[Category:Components:UIX:Interaction{{#translation:}}|Text Field]]
[[Category:Components:UIX:Interaction{{#translation:}}|TextField (Component){{#translation:}}]]

Revision as of 09:00, 28 July 2024

Component image 
TextField component as seen in the Scene Inspector


The TextField component is used in conjunction with a TextEditor, Text, and Button component to provide an editable text field. The Text component stores the text, the TextEditor is the editor for the text, and the Button allows the text editor to appear when then text field is selected.

You must drag a reference to the Text component into the Text property of the TextEditor in order for the editor to know what text it is editing.

Fields
Name Type Description
persistent Bool Determines whether or not this item will be saved to the server.
UpdateOrder Int Controls the order in which this component is updated.
Enabled Bool Controls whether or not this component is enabled.
Editor TextEditor A reference to the text editor component.
__text Text Internal - The text for this field.
EditingStarted Action`1<TextEditor> The editing started action.
EditingChanged Action`1<TextEditor> The editing changed action.
EditingFinished Action`1<TextEditor> The editing finished action.
SubmitPressed [[Type:Action`1<TextEditor>|Action`1<TextEditor>]] The submit pressed action.

Usage

This component is useful for forms, user input, and other text based projects.

Examples

Videos

ProbablePrime made a tutorial video on TextFields:

Related Components