Component:TextExportable: Difference between revisions

From Resonite Wiki
m ProbablePrime moved page TextExportable (Component) to Component:TextExportable: Creating component Namespace
Added a description and usage.
 
(One intermediate revision by one other user not shown)
Line 7: Line 7:
|Name=Text Exportable
|Name=Text Exportable
}}
}}
The '''TextExportable''' component allows the user to take a [[Slot]] and export it as a text file on their device.
To export using this component, look at the [[File Browser#Importing And Exporting|file browser export section]].


<!--T:2-->
<!--T:2-->
== Fields ==
== Fields ==
{{Table ComponentFields
{{Table ComponentFields
|TextSource|IValue`1|TypeString0=IValue<string>|
|TextSource|'''[[Type:IValue`1|IValue`1]]&lt;[[Type:String|String]]&gt;'''|TypeAdv0=true| Anything that is a string, such as textfields, contents, etc.
|Extension|String|
|Extension|String| The file type, defaults to <code>.txt</code>.
|Description|String|
|Description|String| The description of what this text export is. Will be shown during the export process.
}}
}}


<!--T:3-->
<!--T:3-->
== Usage ==
== Usage ==
This can be used to export anything that is text based, or anything you can fill the <code>TextSource</code> with such as log information or anything else that you wish to export out.


<!--T:4-->
<!--T:4-->

Latest revision as of 02:09, 7 July 2024


This article or section is a Stub. You can help the Resonite Wiki by expanding it.


Component image 
Text Exportable component as seen in the Scene Inspector


The TextExportable component allows the user to take a Slot and export it as a text file on their device.

To export using this component, look at the file browser export section.

Fields

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.
TextSource IValue`1<String> Anything that is a string, such as textfields, contents, etc.
Extension String The file type, defaults to .txt.
Description String The description of what this text export is. Will be shown during the export process.

Usage

This can be used to export anything that is text based, or anything you can fill the TextSource with such as log information or anything else that you wish to export out.

Examples

Related Components