This is no longer a stub. added a description, added field description, added a usage description.
Line 2:
Line 2:
<translate>
<translate>
<!--T:1-->
<!--T:1-->
{{stub}}
{{Infobox Component
{{Infobox Component
|Image=TextEditorComponent.png
|Image=TextEditorComponent.png
|Name=Text Editor
|Name=Text Editor
}}
}}
The '''TextEditor''' component takes in a reference to a [[Component:Text|Text]] or [[Component:TextRenderer|TextRenderer]], and then outputs the result into that reference along with the parameters given and by what actions it should do so.
<!--T:2-->
<!--T:2-->
== Fields ==
== Fields ==
{{Table ComponentFields
{{Table ComponentFields
|Text|IText|
|Text|IText| The output of where the text is going to be placed at.
|Undo|Bool|
|Undo|Bool| If true, the setting of the text is undoable.
|UndoDescription|String|
|UndoDescription|String| This gets shown on the undo button on the [[Context menu]].
|EditingStarted|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]<[[Component:TextEditor|TextEditor]]>}}|TypeAdv7=true| Gives the TextEditor an action when the editing has started.
|EditingChanged|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]<[[Component:TextEditor|TextEditor]]>}}|TypeAdv8=true| Gives the TextEditor an action when the editing has changed.
|EditingFinished|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]<[[Component:TextEditor|TextEditor]]>}}|TypeAdv9=true| Gives the TextEditor an action when the editing has finished.
|SubmitPressed|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]<[[Component:TextEditor|TextEditor]]>}}|TypeAdv10=true| Gives the TextEditor an action when the editing has been submitted.
}}
}}
<!--T:3-->
<!--T:3-->
== Usage ==
== Usage ==
This component is used in many places, including:
* [[Component:PrimitiveMemberEditor|Primitive Member Editor]] for directly editing [[Component:TextField|TextFields]] (and [[Ref Hacking]])
* [[UIX]] and [[Component:TextField|TextFields]]
* [[Component:FloatTextEditorParser|Parsing floats]] and [[Component:FloatTextEditorParser|parsing ints]]
The TextEditor component takes in a reference to a Text or TextRenderer, and then outputs the result into that reference along with the parameters given and by what actions it should do so.