Navigation
API > API/Runtime > API/Runtime/Engine
| |
|
| Name |
EDataTableExportFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Engine/Public/DataTableUtils.h |
| Include Path |
#include "DataTableUtils.h" |
Syntax
enum EDataTableExportFlags
{
None = 0,
UseJsonObjectsForStructs = 1 << 0,
UseSimpleText = 1 << 1,
}
Values
| Name |
Remarks |
| None |
No specific options. |
| UseJsonObjectsForStructs |
Export nested structs as JSON objects (JSON exporter only), rather than as exported text. |
| UseSimpleText |
Export text properties as their display string, rather than their complex lossless form. |